Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CatanaRendering

Responsible for the rendering of hightlights of 3D structures Initially planned to perform general rendering, or other rendering operations, but there was no need for anything other than highlights TODO complete... there is the Renderable class that is managed by CatanaRendering :)

Hierarchy

  • CatanaRendering

Index

Constructors

constructor

  • new CatanaRendering(dprWidth: number, dprHeight: number, pickingTarget: WebGLRenderTarget): CatanaRendering

Properties

Private Readonly _fullscreenTarget

_fullscreenTarget: WebGLRenderTarget

Private Readonly blurRedMaterial

blurRedMaterial: ShaderMaterial

Private Readonly blurRedScene

blurRedScene: Scene

Private Readonly blurRedTarget1

blurRedTarget1: WebGLRenderTarget

The 'blurRed' targets are a one-component target (only red component) that are used to process and render the highlighting. Two targets are used in order to perform back-and-forth blurring. They are reduced in size (see CatanaRendering.getReducedWidth/Height) to make blurring faster (and not that much worse visually)

Private Readonly blurRedTarget2

blurRedTarget2: WebGLRenderTarget

Private Readonly blurRedUniforms

blurRedUniforms: {}

Type declaration

  • [p: string]: Uniform

Private Readonly fullscreenCamera

fullscreenCamera: OrthographicCamera

The 'fullscreen' target is used to render into a quad that occupies the whole screen

Private Readonly fullscreenMaterial

fullscreenMaterial: ShaderMaterial

Private Readonly fullscreenScene

fullscreenScene: Scene

Private Readonly fullscreenUniforms

fullscreenUniforms: {}

Type declaration

  • [p: string]: Uniform

Private Readonly pickingTarget

pickingTarget: WebGLRenderTarget

Private pickingTargetPrivate

pickingTargetPrivate: WebGLRenderTarget

Private removeInside

removeInside: boolean = true

Private renderables

renderables: Array<Renderable> = []

Private sceneToRender

sceneToRender: Scene | null

Private selecting

selecting: boolean = false

Private selectionIdsTexture

selectionIdsTexture: Texture

Private Readonly selectionMaterial

selectionMaterial: ShaderMaterial

Private Readonly selectionScene

selectionScene: Scene

Private Readonly selectionTarget

selectionTarget: WebGLRenderTarget

The 'selection' target is a one-component target (only red component) used to process the pickingTarget and decide which fragments will be highlighted. The result is rendered into the selectionTarget

Private Readonly selectionUniforms

selectionUniforms: {}

Type declaration

  • [p: string]: Uniform

Static Readonly SELECTION_COLORS

SELECTION_COLORS: { NEGATIVE: 16711680; NEUTRAL: 16776960; POSITIVE: 65280 } = {NEUTRAL: 0xffff00,NEGATIVE: 0xff0000,POSITIVE: 0x00ff00} as const

Type declaration

  • NEGATIVE: 16711680
  • NEUTRAL: 16776960
  • POSITIVE: 65280

Accessors

fullscreenTarget

  • get fullscreenTarget(): WebGLRenderTarget

Methods

addRenderable

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

hover

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

keyDown

  • keyDown(key: string, s: Stage): boolean

removeRenderable

render

  • render(v: Viewer, camera?: PerspectiveCamera | OrthographicCamera, removeInside?: boolean, renderSelection?: boolean, renderTarget?: WebGLRenderTarget | null): void
  • Render highlights if there are any

    Parameters

    • v: Viewer
    • Optional camera: PerspectiveCamera | OrthographicCamera
    • Default value removeInside: boolean = true
    • Default value renderSelection: boolean = true
    • Default value renderTarget: WebGLRenderTarget | null = null

    Returns void

Private renderSelection

  • renderSelection(r: WebGLRenderer, camera: PerspectiveCamera | OrthographicCamera, removeInside?: boolean): void

renderVisualizations

  • renderVisualizations(v: Viewer, camera: PerspectiveCamera | OrthographicCamera, renderTarget: WebGLRenderTarget | null, superSampleIndex?: number): void
  • Renders all Renderables added with CatanaRendering.addRenderable

    Parameters

    • v: Viewer
    • camera: PerspectiveCamera | OrthographicCamera
    • renderTarget: WebGLRenderTarget | null
    • Default value superSampleIndex: number = -1

    Returns void

select

  • Sets up CatanaRendering so that it will render highlights based on the selection managed by CatanaSelection

    Parameters

    • Optional catSel: CatanaSelection

      CatanaSelection object describing what to highlight

    • Default value c: number = CatanaRendering.SELECTION_COLORS.NEUTRAL

      Color of the highlights

    Returns void

Private selectByOid

Private selectFiltered

  • WARNING: This has not been tested thoroughly enough. It may not work as intended Sets up CatanaRendering so that it will render the highlights based on filters

    Parameters

    • s: FilteredSelection

      Filtered selection to be highlighted

    • Default value c: number = CatanaRendering.SELECTION_COLORS.NEUTRAL

      Color of the highlights

    Returns void

Private selectPicking

  • Sets up CatanaRendering so that it will render the highlights from a pickingTarget

    Parameters

    • s: PickingSelection

      Holds the IDs (pickingIds and objectIds) to be highlighted

    • Default value c: number = CatanaRendering.SELECTION_COLORS.NEUTRAL

      Color of the highlight

    Returns void

Private setRemoveInside

  • setRemoveInside(removeInside: boolean): boolean
  • Parameters

    • removeInside: boolean

      If true, CONTOURS will be rendered (the initial highlighted fragments will be thrown away and only the outside blur will be kept). If false, nothing will be thrown away

    Returns boolean

Private setSelectedGroup

  • setSelectedGroup(group: Group, color?: number): void
  • Sets up CatanaRendering so that it will render the highlights of a Three.js Group

    Parameters

    • group: Group

      Group to be highlighted

    • Default value color: number = CatanaRendering.SELECTION_COLORS.NEUTRAL

      Color of the highlight

    Returns void

Private setSelectedIds

  • setSelectedIds(selectedIdsCount: number, data: Float32Array, mode: SelectionShaderMode, color?: number): void
  • Creates a selection texture/buffer and fills it with the IDs that we want selected

    Parameters

    • selectedIdsCount: number

      How many IDs we want selected

    • data: Float32Array

      An array holding the IDs to be selected (needs to be a multiple of 4 because the data will be encoded as vec4s)

    • mode: SelectionShaderMode

      The mode for selection (see CatanaShader.SelectionShaderMode)

    • Default value color: number = CatanaRendering.SELECTION_COLORS.NEUTRAL

      The color of the highlights

    Returns void

Private setSelecting

  • setSelecting(selecting: boolean): boolean

setSize

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

Private triggerEvent

  • triggerEvent(x: number, y: number, event: (r: Renderable, x: number, y: number) => boolean): boolean

unselect

  • unselect(): boolean

upLeft

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

Static Private getReducedHeight

  • getReducedHeight(height: number): number

Static Private getReducedWidth

  • getReducedWidth(width: number): number

Generated using TypeDoc