Point

Type Alias Point 

Source
pub type Point = Point3<f64>;
Expand description

Cartesian coordinate storing atomic positions in ångströms.

The alias ensures geometric calculations share the exact numeric representation across IO readers, topology builders, and structure editing utilities.

Aliased Type§

#[repr(C)]
pub struct Point { pub coords: Matrix<f64, Const<3>, Const<1>, ArrayStorage<f64, 3, 1>>, }

Fields§

§coords: Matrix<f64, Const<3>, Const<1>, ArrayStorage<f64, 3, 1>>

The coordinates of this point, i.e., the shift from the origin.