pub type Triangle = Triangle;Expand description
A triangle shape.
Aliased Type§
#[repr(C)]pub struct Triangle {
pub a: Vec3,
pub b: Vec3,
pub c: Vec3,
}Fields§
§a: Vec3The first vertex of the triangle.
b: Vec3The second vertex of the triangle.
c: Vec3The third vertex of the triangle.