KMotion_dotNet.KM_CoordMotion.StartTraverse C# (CSharp) Method

StartTraverse() public method

Fires an async delegate to move axes at traversal speeds non-interpolated
public StartTraverse ( double x, double y, double z, double a, double b, double c, bool suppresscallback, object usercallback ) : 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
usercallback object User supplied object that gets returned when traverse is complete
return void
        public void StartTraverse(double x, double y, double z, double a, double b, double c, bool suppresscallback, object usercallback)
        {
            var action = new Action(delegate()
                {
                    StraightTraverse(x, y, z, a, b, c, suppresscallback);
                });
            action.BeginInvoke(OnTraverseCompletes, usercallback);
        }
KM_CoordMotion