JumpAndDrillShapePattern AddDrillPulse
Adds a laser pulse configuration to be used with jump and drill operation. The pattern can support multiple pulse configurations and will be executed in the order they have been added.
Overloads
| public void AddDrillPulse(DrillPulse pulse) |
Parameters
| DrillPulse | pulse | A pulse configuration |
Return value
| void |
Example
Copy
bool pulsemode = false;
JumpAndDrillShapePattern jumpandDrillPattern = new JumpAndDrillShapePattern((float)2.5, (float)2.5, 14, 1, 2, pulsemode);
// Create a Drill Pulse
DrillPulse pulse1 = new DrillPulse(2.5f, 2.5f, 5);
jumpandDrillPattern.AddDrillPulse(pulse1);