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: 3.1.9316+94bbd23b55747f096f056a5602f7dd90558b3673
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.
Remarks

[Missing <remarks> documentation for "T:Ab4d.SharpEngine.Cameras.ProjectionTypes"]

See Also