Drill Pulse
Defines the properties of a laser pulse used for the point and shoot drill pattern and Jump and Drill pattern.
public DrillPulse() |
public DrillPulse(float pulseOnTime, float pulseOffTime, int pulseIterations) |
Properties
PulseIterations | Get or Set the number of pulses for Burst mode |
PulseOffTime | Get or Set the pulse off time for the laser pulse. |
PulseOnTime | Get or Set the pulse on time for the laser pulse |
Methods
Clone | Clone this drill pulse object |
Copy
DrillPulse pulse1 = new DrillPulse(25, 40, 2);
DrillPulse pulse2 = new DrillPulse(300, 5, 3);
DrillPulse pulse3 = new DrillPulse(5, 5, 1);
List<DrillPulse> drillPulseList = new List<DrillPulse>();
drillPulseList.Add(pulse1);
drillPulseList.Add(pulse2);
drillPulseList.Add(pulse3);