Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DirectionSelectorCircle

Manages a HTMLCanvasElement that draws a 2D direction selector circle

Hierarchy

  • DirectionSelectorCircle

Index

Constructors

constructor

Properties

Private Readonly _canvas

_canvas: HTMLCanvasElement

Private Readonly _context

_context: CanvasRenderingContext2D

Private _domeSibling

Private _dotPhi

_dotPhi: number = Math.PI / 2

Private _dotTheta

_dotTheta: number = Math.PI / 2

Private Readonly _params

_params: {}

Type declaration

  • [id: string]: number

Private _signals

_signals: CircleSignals

Accessors

angleRad

  • get angleRad(): number

domElement

  • get domElement(): HTMLCanvasElement

domeSibling

radiusNormalized

  • get radiusNormalized(): number

signals

Methods

Private draw

  • draw(): void

getDirection

  • getDirection(x: number, y: number, normalized?: boolean): Vector3
  • Parameters

    • x: number

      The 2D X position in this circle

    • y: number

      The 2D Y position in this circle

    • Default value normalized: boolean = false

      Whether the provided X and Y are normalized in the range [0,1]. Alternatively, they can be in screen coordinates

    Returns Vector3

    The 3D vector that the provided 2D (X, Y) position represent

Private getDirectionPolar

  • getDirectionPolar(angle: number, radius: number, normalized: boolean): Vector3

resetDirection

  • resetDirection(sync?: boolean): void
  • Resets the direction in which this circle is pointing (i.e., at the center of the circle)

    Parameters

    • Default value sync: boolean = true

      Whether to synchronize the resulting 3D direction with a hemisphere visualization

    Returns void

setAngleRad

  • setAngleRad(angleInRad: number, sync?: boolean): void
  • Sets the angle of the selected point in this circle around the circle's center

    Parameters

    • angleInRad: number

      Angle in radians

    • Default value sync: boolean = true

      Whether to synchronize the resulting 3D direction with a hemisphere visualization

    Returns void

setDirection

  • setDirection(dir: Vector3, sync?: boolean): void
  • Sets the 2D position of the selected point in this circle based on a given 3D direction vector

    Parameters

    • dir: Vector3

      The 3D direction vector

    • Default value sync: boolean = true

      Whether to synchronize the resulting 3D direction with a hemisphere visualization

    Returns void

setRadius

  • setRadius(radius: number, normalized: boolean, sync?: boolean): void
  • Sets the distance of the selected point in this circle from the circle's center

    Parameters

    • radius: number

      Radius (either normalized in range [0,1] or in pixels, depending on the parameter 'normalized')

    • normalized: boolean

      Whether the provided radius is normalized in range [0,1]. Alternatively, it will be in pixels

    • Default value sync: boolean = true

      Whether to synchronize the resulting 3D direction with a hemisphere visualization

    Returns void

update

  • update(): void

Private updateAllParams

  • updateAllParams(): void

Private updateDirParams

  • updateDirParams(): void

Generated using TypeDoc