KMotion_dotNet.KM_CoordMotion.StraightTraverse C# (CSharp) Method

StraightTraverse() public method

Move axes at traversal speeds non-interpolated
public StraightTraverse ( double x, double y, double z, double a, double b, double c, bool suppresscallback ) : void
x double x position
y double y position
z double z position
a double a position
b double b position
c double c position
suppresscallback bool Prevents callback information from being dispatched
return void
        public void StraightTraverse(double x, double y, double z, double a, double b, double c, bool suppresscallback)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_StraightTraverse(_InstanceHandle, x, y, z, a, b, c, suppresscallback);
                //process return value
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "StraightTraverse"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "StraightTraverse"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "StraightTraverse"));
            }
        }
        /// <summary>
KM_CoordMotion