Skip to main content

Meta_Viewport

Module: Metanodes / Definitions

A Viewport occupies a specified rectangle of a window (range 0 to 1) which renders the 3D scene from the specified eye points looking at the specified screen rectangles.

#include <meta_view.hpp>

Public Types

TypeName
enumEyeOverride { EyeOverride_None = -1, EyeOverride_Mono = 0, EyeOverride_Left = 1, EyeOverride_Right = 2 }
Values for Idx_EyeOverride.
enumIDX { Idx_Enabled, Idx_Rectangle, Idx_Camera, Idx_ProjectionMode, Idx_Screen_Mono, Idx_Screen_Left, Idx_Screen_Right, Idx_FOV, Idx_ScreenWidth, Idx_ScreenOffset, Idx_HMD, Idx_OrthographicZoom, Idx_EyeOverride, Idx_Mirror }
Property index.
enumProjectionMode { ProjectionMode_PhysicalScreen, ProjectionMode_FOVAndWidth, ProjectionMode_Orthographic }
Values for Idx_ProjectionMode.

Public Types Documentation

enum EyeOverride

EnumeratorValueDescription
EyeOverride_None-1No eye override, will draw both left and right as required (Symbols - C: "EyeOverrideNone", Lua: __Viewport_EyeOverrideNone)
EyeOverride_Mono0Drawing is done as mono (Symbols - C: "EyeOverrideMono", Lua: __Viewport_EyeOverrideMono)
EyeOverride_Left1Drawing is done only from the left eye (Symbols - C: "EyeOverrideLeft", Lua: __Viewport_EyeOverrideLeft)
EyeOverride_Right2Drawing is done only from the right eye (Symbols - C: "EyeOverrideRight", Lua: __Viewport_EyeOverrideRight)

Values for Idx_EyeOverride.

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - When enabled, viewport is drawn to the screen
Idx_Rectanglevec4f - The viewport bounds, scaled on the screen by the ViewportLayout size. (e.g. layout size 2.0, 1.0, and child viewport width 1.0 will fill half the screen with the viewport)
Idx_Cameralink - The camera from which the scene is rendered
Idx_ProjectionModeProjectionMode (int) - The projection mode
Idx_Screen_Monolink - (for PhysicalScreen mode) Link to the physical screen for rendering mono
Idx_Screen_Leftlink - (for PhysicalScreen mode) Link to the physical screen for rendering the left eye
Idx_Screen_Rightlink - (for PhysicalScreen mode) Link to the physical screen for rendering the right eye
Idx_FOVfloat - (for other modes) The field of view
Idx_ScreenWidthfloat - (for other modes) The physical width of the screen being displayed on (for stereo separation calculations)
Idx_ScreenOffsetvec2f - (for other modes) The screen offset
Idx_HMDbool - (for other modes) Whether the viewport is being used in a HMD, which makes the viewport calculation affect the camera transform directly, rather than skewing the projection for wall-based setups
Idx_OrthographicZoomfloat - (for Orthographic mode) The zoom factor
Idx_EyeOverrideEyeOverride (int) - Overrides the eye drawn by this viewport
Idx_Mirrorbool - When enabled, viewport is mirrored, which can be helpful for aligning tracker inputs with assemblies

Property index.

enum ProjectionMode

EnumeratorValueDescription
ProjectionMode_PhysicalScreenProjection is defined by eye position and physical screen node (Symbols - C: "ProjectionModePhysicalScreen", Lua: __Viewport_ProjectionModePhysicalScreen)
ProjectionMode_FOVAndWidthProjection is defined by eye position, FOV, screen width and HMD flag (Symbols - C: "ProjectionModeFOVAndWidth", Lua: __Viewport_ProjectionModeFOVAndWidth)
ProjectionMode_OrthographicProjection is orthographic, from the eye position (Symbols - C: "ProjectionModeOrthographic", Lua: __Viewport_ProjectionModeOrthographic)

Values for Idx_ProjectionMode.