@novorender/web_app / RenderStateCamera
Interface: RenderStateCamera
Camera related render state.
Properties
far
readonly far: number;
Camera's far clipping plane distance.
Remarks
This value must be larger than the near clipping plane. Any pixels that are farther away from the image plane will be clipped. Smaller values improves z-buffer resolution, which helps reduce z-fighting. Smaller values also increases the # objects culled, which could help improve rendering performance.
Defined in
@novorender/core3d/state/index.ts:264
fov
readonly fov: number;
Camera's vertical field of view.
Remarks
For pinhole cameras, this value is interpreted as the angle between the top and bottom edge of the frustum in degrees. For orthographic cameras, this value is interpreted as the distance between the top and bottom edge of the view frustum in meters.