PlanePrimitive

Planes are constructed from a width, height and matrix transform.

public class PlanePrimitive : Primitive
{
    // Height of the plane
    public float height;

    // This transform must only contain rotation and translation components, not scale
    public Matrix4F transform;

    // Width of the plane
    public float width;
}