pub type ParametricPlaned = ParametricPlane<f64>;Expand description
Double-precision parametric plane.
Aliased Type§
#[repr(C)]pub struct ParametricPlaned {
pub center: Vector3<f64>,
pub x_axis: Vector3<f64>,
pub y_axis: Vector3<f64>,
}Fields§
§center: Vector3<f64>Plane center point.
x_axis: Vector3<f64>Plane X axis direction.
y_axis: Vector3<f64>Plane Y axis direction.