KMotion_dotNet.KM_CoordMotion.StraightFeed C# (CSharp) Method

StraightFeed() public method

Perform linear motion at a specified feed rate
public StraightFeed ( double feedrate, double x, double y, double z, double a, double b, double c, int sequence_number, int ID ) : void
feedrate double Desired feed rate
x double X end point
y double Y end point
z double Z end point
a double A end point
b double B end point
c double C end point
sequence_number int internal reference
ID int internal reference
return void
        public void StraightFeed(double feedrate, double x, double y, double z, double a, double b, double c, int sequence_number, int ID)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_StraightFeed(_InstanceHandle, feedrate, x, y, z, a, b, c, sequence_number, ID);
                //process return value
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "StraightFeed"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "StraightFeed"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "StraightFeed"));
            }
        }
        /// <summary>
KM_CoordMotion