pub type Segment3d = Segment<f64, Vec3d>;Expand description
3D double-precision line segment.
Aliased Type§
pub struct Segment3d {
pub s: Vector3<f64>,
pub e: Vector3<f64>,
/* private fields */
}Fields§
§s: Vector3<f64>Start point.
e: Vector3<f64>End point.