Projection |
public enum ProjectionTypes
Member name | Value | Description |
---|---|---|
Perspective | 0 | The perspective projection is similar to the real world where the objects that are farther way from the camera appear smaller. |
Orthographic | 1 | In orthographic projection the distance of the objects from the camera does not change the size of the objects on the screen. Orthographic is usually used for technical drawings because the objects sizes are preserved and the lines that are parallel in 3D stay parallel in 2D. Orthographic does not use Distance property but ViewWidth to define the visible area. |