API / geotoolkit3d / gigagrid / ReservoirGrid / ReservoirGrid
gigagrid.ReservoirGrid.ReservoirGrid
The main class in GigaGrid, controlling grid creation, render process, and resolution switching.
↳
ReservoirGrid
Constructors
Methods
Methods
▸ add(object): ReservoirGrid
Adds object as child of this object.
| Name | Type | Description |
|---|---|---|
object | Object3D<Object3DEventMap> | Object3D<Object3DEventMap>[] | object |
this
▸ afterRender(scene, camera, plot, renderer): ReservoirGrid
This function is called after rendering and can update this object's content.
It should not trigger any invalidateObject though.
Note that it is not necessary nor recommended to explicitly call afterRender on this object's children as beforeRender will be called on all nodes present in the scene.
This will be executed after the transformations simplification.
See
Plot for more details on the render steps
| Name | Type | Description |
|---|---|---|
scene | Scene | The scene |
camera | Camera | The camera used for this render phase. |
plot | Plot | The 3D plot |
renderer | WebGLRenderer | The renderer |
AbstractReservoirGrid.afterRender
▸ beforeRender(scene, camera, plot, renderer): ReservoirGrid
This function is called prior to rendering and can update this object's content.
It should not trigger any invalidateObject though.
Note that it is not necessary nor recommended to explicitly call beforeRender on this object's children as beforeRender will be called on all nodes present in the scene.
This will be executed after the transformations simplification.
See
Plot for more details on the render steps
| Name | Type | Description |
|---|---|---|
scene | Scene | The scene |
camera | Camera | The camera used for this render phase. |
plot | Plot | The 3D plot |
renderer | WebGLRenderer | The renderer |
AbstractReservoirGrid.beforeRender
▸ dispose(): void
Dispose all event listeners, Object3D, cache
void
▸ getClassName(): string
string
AbstractReservoirGrid.getClassName
▸ getCurrentCellCount(): number
Get the current number of cells
number
cellcount
▸ getGridResult(): GigaGridResult
Get grid overall information
Grid
▸ getIJKFilter(): IJKFilter
Get IJK range filter
filter
▸ getLoadingProgress(): number
Get loading progress percentage.
number
percentage
▸ getOptions(): Required<Options> & Omit<Options, "colorprovider" | "skeleton" | "cachelimit" | "highlightmode"> & { cachelimit: number ; colorprovider?: ColorProvider ; highlightmode: HighlightMode ; skeleton: { color: string ; linewidth: number } }
Get the ReservoirGrid options, returned as an object
Required<Options> & Omit<Options, "colorprovider" | "skeleton" | "cachelimit" | "highlightmode"> & { cachelimit: number ; colorprovider?: ColorProvider ; highlightmode: HighlightMode ; skeleton: { color: string ; linewidth: number } }
AbstractReservoirGrid.getOptions
▸ getPropertyFilter(): PropertyFilter
Get property filter
filter
▸ getPropertyKey(): PropertyKey
Get property key
key
▸ getSelectedIJKIndex(): IJKIndex
Get IJK info of selected cell
Needs to have highlighting enabled in Plot
ijkindex
▸ getTotalCellCount(): number
Get total number of cells available in the gigagrid
number
total cells in the the grid
▸ getVisible(): boolean
Get visible
boolean
true, if object is visible
AbstractReservoirGrid.getVisible
▸ invalidateObject<T>(event?): ReservoirGrid
Notifies this object and its parent that this object has been invalidated.
If this object is in a Plot, it will be marked as dirty and will trigger a rendering cycle.
| Name |
|---|
T |
| Name | Type | Description |
|---|---|---|
Optional event | Event<T> | The event to fire |
AbstractReservoirGrid.invalidateObject
▸ isDisposed(): boolean
Returns whether this object has been disposed
boolean
AbstractReservoirGrid.isDisposed
▸ isSelectable(): boolean
Return if this object can be picked/selected (see RendererPicking).
boolean
AbstractReservoirGrid.isSelectable
▸ notify(type, source, args?): ReservoirGrid
Notify listeners
| Name | Type | Description |
|---|---|---|
type | string | event types |
source | any | of the event |
Optional args | any | arguments of the event |
this
▸ off(type?, callback?): ReservoirGrid
Detach listener on event. Calling .off() with no arguments removes all attached listeners. Calling .off(type) with no callback removes all attached listeners for specific type.
| Name | Type | Description |
|---|---|---|
Optional type | string | type of the event |
Optional callback | EventListener | function to be called |
this
▸ off<E>(type, callback): ReservoirGrid
| Name | Type |
|---|---|
E | extends string |
| Name | Type |
|---|---|
type | E |
callback | (eventType: E, sender: ReservoirGrid, args: EventMap[E]) => void |
▸ on(type, callback, options?): ReservoirGrid
Attach listener on event that will be called whenever the specified event is delivered to the target
If the callback function is already in the list of event listeners for this target, the function is not added a second time.
If a particular anonymous function is in the list of event listeners registered for a certain target, and then later in the code, an identical anonymous function is given in an "on" call, the second function will also be added to the list of event listeners for that target.
| Name | Type | Description |
|---|---|---|
type | string | type of event or property |
callback | EventListener | to be called |
Optional options | Options | options of subscription |
this
▸ on<E>(type, callback, options?): ReservoirGrid
| Name | Type |
|---|---|
E | extends string |
| Name | Type |
|---|---|
type | E |
callback | (eventType: E, sender: ReservoirGrid, args: EventMap[E]) => void |
Optional options | Options |
▸ onStatsUpdated(metrics): ReservoirGrid
This function is called when the plot has updated performance metric.
It will be called every set number of frames.
The number of frame is customizable in the plot options advancedrendering.performancemetrics.updateframeperiod and is 100 by default.
| Name | Type | Description |
|---|---|---|
metrics | PerformanceMetrics | The performance metrics. |
AbstractReservoirGrid.onStatsUpdated
▸ Protected onVisibilityChanged(): void
This method is called if visibility is changed. Send event Events.VisibilityChanged
void
AbstractReservoirGrid.onVisibilityChanged
▸ redraw(): void
Trigger the redraw of GigaGrid.
This method will be automatically called if options have changed
void
▸ remove(object): ReservoirGrid
Removes object as child of this object.
| Name | Type | Description |
|---|---|---|
object | Object3D<Object3DEventMap> | Object3D<Object3DEventMap>[] | object |
this
▸ removeHighlightShape(): void
Remove the helper shape representing the selected cell from being displayed.
void
AbstractReservoirGrid.removeHighlightShape
▸ setOptions(options?): ReservoirGrid
Set options, the given json will be merged with the object's state so that only the given options will be changes.
| Name | Type | Description |
|---|---|---|
Optional options | OptionsBase | The options |
this
AbstractReservoirGrid.setOptions
▸ setPosition(position): ReservoirGrid
Set Object's local position.
| Name | Type | Description |
|---|---|---|
position | Object | local position |
Optional position.x | number | |
Optional position.y | number | |
Optional position.z | number |
this
AbstractReservoirGrid.setPosition
▸ setPropertyKey(propertyKey): void
Set colormap based on property key for gigagrid
| Name | Type | Description |
|---|---|---|
propertyKey | PropertyKey | key |
void
▸ setRotation(x, y, z, order?): ReservoirGrid
Set Object's local rotation (Euler angles), in radians.
| Name | Type | Description |
|---|---|---|
x | number | x angle |
y | number | y angle |
z | number | z angle |
Optional order | EulerOrder | euler order |
this
AbstractReservoirGrid.setRotation
▸ setSelectable(selectable): void
Set if this object can be picked/selected (see RendererPicking).
| Name | Type | Description |
|---|---|---|
selectable | boolean | if can be selected |
void
AbstractReservoirGrid.setSelectable
▸ setVisible(visible, silent?): ReservoirGrid
Set visible
| Name | Type | Description |
|---|---|---|
visible | boolean | true, if object is visible |
Optional silent | boolean | true, if object shouldn't be invalidated |
this
AbstractReservoirGrid.setVisible
▸ updateObject(scene, camera): ReservoirGrid
This function is called prior to rendering and can update this object's content.
It should not trigger any invalidateObject though.
Note that it is not necessary nor recommended to explicitly call updateObject on this object's children as updateObject will be called on all nodes present in the scene.
This will be executed before the transformations simplification.
See
Plot for more details on the render steps
| Name | Type | Description |
|---|---|---|
scene | Scene | The scene |
camera | Camera | The camera |
AbstractReservoirGrid.updateObject
▸ useOwnHighlight(): boolean
Returns true if this object make its own highlight effect (like geotoolkit3d.scene.reservoir.hexahedral.ReservoirGrid) This is to prevent unnecessary executions of the costly highlight passes.
boolean
AbstractReservoirGrid.useOwnHighlight
▸ Static getClassName(): string
string
AbstractReservoirGrid.getClassName
▸ Static register(): void
Register object for special processing through a callback function
Example
geotoolkit3d.util.ObjectProcessor.getDefaultInstance().registerObject(this.getClassName(), callback);Deprecated
since 5.0, to allow custom object highlighting, please instead make your Object implement the interface geotoolkit3d/scene/ICustomHighlight.
void