API / geotoolkit3d / scene / seismic / Slice / Slice
Type Aliases
Ƭ CommonOptions: Object
The base options related to this file.
| Name | Type | Description |
|---|---|---|
height? | number | The slice height (in samples), by default computes the size of the selected section |
maxlod | number | Deprecated since 4.1, lod is temporarily unavailable but will be back soon, with a different API. the highest level of resolution to log2(maxTextureSize). The default maximum texture size is gl_max_texture_size / 2 |
minlod | number | Deprecated since 4.1, lod is temporarily unavailable but will be back soon, with a different API. the lowest level of resolution equals to log2(minTextureSize). The default minimum texture is 512 |
points? | Vector3[] | Array of points for definition of plane |
slicelocation? | Location | The slice location in I, J or Z. Must be defined with at least one of its sub-parameters in constructor options. |
width? | number | The slice width (in traces), by default computes the size of the selected section |
xstart? | number | The slice first trace number |
ystart? | number | The slice first sample number |
Ƭ Location: Object
Represent the position of the slice along the i,j,k axes. One of the axes must be defined when creating the Slice.
| Name | Type | Description |
|---|---|---|
i? | number | The inline number of the section |
j? | number | The xline number of the section |
z? | number | The sample index of the horizontal slice |
Ƭ Options: OptionsBase & { index: IndexCoordinates ; material: SliceMaterial }
Constructor options, where a few options are mandatory.
Ƭ OptionsBase: Partial<CommonOptions> & Options & Partial<Options>
Options used in setOptions, where most options are optionals.
Ƭ OptionsBaseOut: Required<CommonOptions> & Required<Options> & OptionsBaseOut
Options returned by getOptions, where some options are sure to be defined.