Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

  • new FrameCameraBase(position: Vector3, lookAt: Vector3, up: Vector3, near: number, far: number, aspectRatio: number): FrameCameraBase

Properties

aspectRatio: number
far: number
lookAt: Vector3
near: number
position: Vector3
up: Vector3

Accessors

  • get direction(): Vector3
  • get frustumProjectionViewMatrix(): Matrix4
  • get projectionMatrix(): Matrix4
  • get projectionMatrixInverse(): Matrix4
  • get projectionViewMatrix(): Matrix4
  • get viewMatrix(): Matrix4
  • get viewVector(): Vector3
  • get worldMatrix(): Matrix4

Methods

  • intersectLineWithNear(line: Line3): undefined | Vector3
  • Returns a point on the near plane that intersects with line. If line does not intersect, then undefined is returned.

    Parameters

    • line: Line3

      The line to intersect.

    Returns undefined | Vector3

    A point in world space, or undefined if the line does not intersect with the near plane.

  • isPointBehindNear(world: Vector3): boolean
  • Checks if the given point, in world space, is behind the near plane of the camera.

    Parameters

    • world: Vector3

      A point in world space.

    Returns boolean

    true if the point is behind the camera.

  • fromBoundingBox(camera: FrameCamera, boundingBox: BoundingBox, aspectRatio: number): FrameCameraBase