public PMLeadExtension(LeadTypes leadInExtension, PMToolpath toolpath) : base(leadInExtension, toolpath)
 {
 }
 /// <summary>
 /// <see cref="PMRamp"/> encapsulate the option that enables you to specify how the tool ramps into the stock.
 /// </summary>
 /// <param name="leadType"><see cref="LeadTypes"/> that <see cref="PMRamp"/> is based on</param>
 /// <param name="toolpath"><see cref="PMToolpath"/> to allow access to powermill macro</param>
 public PMRamp(LeadTypes leadType, PMToolpath toolpath)
 {
     _leadType = leadType;
     _toolpath = toolpath;
 }
Пример #3
0
 /// <summary>
 /// Represent a Lead in <see cref="PMToolpath"/>.
 /// </summary>
 /// <param name="leadType"></param>
 /// <param name="toolpath"></param>
 internal PMLead(LeadTypes leadType, PMToolpath toolpath)
 {
     LeadType = leadType;
     Toolpath = toolpath;
     Ramp     = new PMRamp(leadType, toolpath);
 }