API Reference v9.2.0

PvtPartialPointdata class

Module: zaber_motion.ascii

Data representing a single point in a PVT sequence or buffer with optional members. This is used to represent sequences with missing columns such as velocity or time. The data must be completed using the PvtSequence.Generate... methods before it can be sent to a device.

To use this type, add from zaber_motion.ascii import PvtPartialPoint to the top of your source code.

Properties

p

positions

pvt_partial_point.positions
List[Optional[Measurement]] Position of this point for all series (axes).
p

velocities

pvt_partial_point.velocities
List[Optional[Measurement]] Velocity at this point for all series (axes).
p

time

optional
pvt_partial_point.time
Optional[Measurement] Time to take to reach this point from the previous point or starting position.
p

relative

optional
pvt_partial_point.relative
Optional[bool] Flag indicating if this point's position is relative to the previous point or starting position. Defaults to false, meaning absolute positioning.