KSS 8.3.34
When using Trigger When Path = - Distance, should the trigger happen at the start of the move if the distance is greater than the length of the move? I am trying to understand how this should happen when there is only one move to consider as well as when there are multiple motion commands before the trigger.
Code
$Advance = 1
p1 = 0.0, 0.0, 0.0
p2 = 50.0, 0.0, 0.0
Lin p1
Wait Sec 0.0
Trigger When Path = -100 Delay 1.0
Lin p2
In the case above, would the 1.0 second delay happen before the motion to p2 starts?
Code
$Advance = 1
p1 = 0.0, 0.0, 0.0
p2 = 50.0, 0.0, 0.0
p3 = 120.0, 0.0, 0.0
Lin p1
Wait Sec 0.0
Lin p2
Trigger When Path = -100 Delay 1.0
Lin p3
Display More
In this case above, would the 1.0 second delay happen at { 20.0, 0.0, 0.0 } or would it happen at p2?
Also, when using Trigger When Distance = Switching_Point, can you use a decimal value to make the trigger happen between the start and end points?