Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DirectionSelectorHemisphere

Manages a Three.js Scene that contains a 3D direction selection hemisphere

Hierarchy

Index

Constructors

constructor

Properties

Private _arrow

_arrow: Object3D

Private _circleSibling

_circleSibling: DirectionSelectorCircle

Private _direction

_direction: Vector3

Private _dome

_dome: Mesh

Private _domeMaterialColor

_domeMaterialColor: MeshBasicMaterial

Private _domeMaterialPosition

_domeMaterialPosition: ShaderMaterial

Private _rotation

_rotation: Quaternion

Private _scene

_scene: Scene

Private _signals

_signals: DomeSignals

Private _visible

_visible: boolean = false

Static Private Readonly SCALE

SCALE: number = 3

Accessors

circleSibling

direction

  • get direction(): Vector3

Protected renderableIndex

  • get renderableIndex(): number

signals

Static pixelwiseDataTarget

  • get pixelwiseDataTarget(): WebGLRenderTarget

Methods

clickLeft

  • clickLeft(x: number, y: number, s: Stage): boolean

downLeft

  • downLeft(x: number, y: number, s: Stage): boolean

dragLeft

  • dragLeft(x: number, y: number, s: Stage): boolean

getDirection

  • getDirection(x: number, y: number, renderer: WebGLRenderer): null | Vector3
  • Used when, e.g., the 3D hemisphere is clicked on the screen. Using the screen's X and Y coordinates, we can find out where the hemisphere was clicked X and Y coordinates are converted to a 3D position on the hemisphere where the click was performed This function then returns the direction from the hemisphere center to this click 3D position

    Parameters

    • x: number

      The screen "X" coordinate

    • y: number

      The screen "Y" coordinate

    • renderer: WebGLRenderer

      The Three.js renderer being used

    Returns null | Vector3

    Based on X and Y screen coordinates, which 3D direction our direction pointer should point to in order to point towards the mouse 2D position

Protected getPixel

  • getPixel(x: number, y: number, r: WebGLRenderer): null | Vector3

hover

  • hover(x: number, y: number, s: Stage): boolean

render

  • render(r: WebGLRenderer, camera: PerspectiveCamera | OrthographicCamera, target: WebGLRenderTarget, superSampleIndex: number): void

resetDirection

  • resetDirection(sync?: boolean): void
  • Makes the direction pointer of this hemisphere point to the center of the hemisphere

    Parameters

    • 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
  • Parameters

    • dir: Vector3

      Direction to which the direction pointer of this hemisphere should point to

    • Default value sync: boolean = true

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

    Returns void

setPosition

  • setPosition(p: Vector3): void

setRotation

  • setRotation(rot: Quaternion | Vector3): void

setSize

  • setSize(width: number, height: number): void

setVisible

  • setVisible(v: boolean): void

upLeft

  • upLeft(x: number, y: number, s: Stage): boolean

Static Private line

  • line(type: "x" | "y", rad: number, radseg: number): Object3D
  • Parameters

    • type: "x" | "y"

      "x" or "y" axis

    • rad: number

      Radius of the base of the cylinder

    • radseg: number

      Radial segments of the generated cylinder

    Returns Object3D

    A cylinder (helper line) mesh of either the "X" or "Y" axis

Static Private triangle

  • triangle(type: "x" | "y", rad: number, radseg: number): Object3D

Generated using TypeDoc