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