KMotion_dotNet.KM_CoordMotion.DoRateAdjustments C# (CSharp) Method

DoRateAdjustments() public method

Update the Trajectory Planner's segment feedrates.
public DoRateAdjustments ( int i0, int i1, double feedrate ) : void
i0 int
i1 int
feedrate double
return void
        public void DoRateAdjustments(int i0, int i1, double feedrate)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_DoRateAdjustments(_InstanceHandle, i0, i1, feedrate);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "DoRateAdjustments"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "DoRateAdjustments"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "DoRateAdjustments"));
            }
        }
        /// <summary>
KM_CoordMotion