Click or drag to resize
Ab4d.SharpEngine logo

ProjectionTypes Enumeration

ProjectionTypes defines possible types of camera projection.

Namespace: Ab4d.SharpEngine.Cameras
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
Syntax
C#
public enum ProjectionTypes
Members
Member nameValueDescription
Perspective0 The perspective projection is similar to the real world where the objects that are farther way from the camera appear smaller.
Orthographic1 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.
See Also