Type Alias Triangle

Source
pub type Triangle = Triangle;
Expand description

A triangle shape.

Aliased Type§

#[repr(C)]
pub struct Triangle { pub a: OPoint<f32, Const<3>>, pub b: OPoint<f32, Const<3>>, pub c: OPoint<f32, Const<3>>, }

Fields§

§a: OPoint<f32, Const<3>>

The triangle first point.

§b: OPoint<f32, Const<3>>

The triangle second point.

§c: OPoint<f32, Const<3>>

The triangle third point.