pub struct DigPoint {
pub label: String,
pub x: f64,
pub y: f64,
pub z: f64,
pub kind: PointKind,
}Expand description
A single digitization point from a headshape file.
Fields§
§label: StringPoint label (e.g., “nasion”, “lpa”, “rpa”, or numeric index).
x: f64X coordinate in mm.
y: f64Y coordinate in mm.
z: f64Z coordinate in mm.
kind: PointKindPoint category if detectable (fiducial, extra, EEG, HPI).
Trait Implementations§
impl StructuralPartialEq for DigPoint
Auto Trait Implementations§
impl Freeze for DigPoint
impl RefUnwindSafe for DigPoint
impl Send for DigPoint
impl Sync for DigPoint
impl Unpin for DigPoint
impl UnsafeUnpin for DigPoint
impl UnwindSafe for DigPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more