Planes are constructed from a width, height and matrix transform. ```cs public class PlanePrimitive : Primitive { public float width = 1; public float height = 1; public Matrix4F transform = Matrix4F.Identity; } ```