```cs
public class PrismPrimitive : Primitive
{
public Vector3F size = new(1, 1, 1);
public Matrix4F transform = Matrix4F.Identity;
}
```
> WARNING: the `transform` matrix should only contain rotation and translation operations, not scale. The size of the prism should be controlled via the `size` property