@kitware/vtk.js 30.6.0 → 30.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/Common/Core/Base64.d.ts +2 -2
  2. package/Common/Core/CellArray.d.ts +45 -42
  3. package/Common/Core/DataArray.d.ts +465 -449
  4. package/Common/Core/Endian.d.ts +5 -5
  5. package/Common/Core/HalfFloat.d.ts +3 -3
  6. package/Common/Core/ImageHelper.d.ts +11 -5
  7. package/Common/Core/LookupTable.d.ts +260 -257
  8. package/Common/Core/Math.d.ts +461 -270
  9. package/Common/Core/MatrixBuilder.d.ts +117 -112
  10. package/Common/Core/Points.d.ts +114 -106
  11. package/Common/Core/PriorityQueue.d.ts +34 -30
  12. package/Common/Core/ProgressHandler.d.ts +44 -39
  13. package/Common/Core/ScalarsToColors/Constants.d.ts +9 -9
  14. package/Common/Core/ScalarsToColors.d.ts +351 -326
  15. package/Common/Core/StringArray.d.ts +94 -89
  16. package/Common/Core/URLExtract.d.ts +9 -6
  17. package/Common/Core/VariantArray.d.ts +94 -89
  18. package/Common/DataModel/AbstractPointLocator.d.ts +18 -18
  19. package/Common/DataModel/Box.d.ts +60 -52
  20. package/Common/DataModel/CardinalSpline1D.d.ts +59 -34
  21. package/Common/DataModel/Cell.d.ts +70 -67
  22. package/Common/DataModel/Collection.d.ts +100 -84
  23. package/Common/DataModel/Cone.d.ts +30 -27
  24. package/Common/DataModel/Cylinder.d.ts +122 -112
  25. package/Common/DataModel/DataSet/Constants.d.ts +9 -9
  26. package/Common/DataModel/DataSet.d.ts +38 -35
  27. package/Common/DataModel/DataSetAttributes/FieldData.d.ts +217 -206
  28. package/Common/DataModel/DataSetAttributes.d.ts +420 -415
  29. package/Common/DataModel/EdgeLocator.d.ts +82 -79
  30. package/Common/DataModel/ITKHelper.d.ts +33 -22
  31. package/Common/DataModel/ImageData.d.ts +362 -340
  32. package/Common/DataModel/IncrementalOctreeNode.d.ts +242 -242
  33. package/Common/DataModel/IncrementalOctreePointLocator.d.ts +16 -16
  34. package/Common/DataModel/KochanekSpline1D.d.ts +60 -36
  35. package/Common/DataModel/Line.d.ts +104 -83
  36. package/Common/DataModel/Locator.d.ts +10 -10
  37. package/Common/DataModel/PiecewiseFunction.d.ts +215 -199
  38. package/Common/DataModel/Plane.d.ts +255 -223
  39. package/Common/DataModel/PointSet.d.ts +32 -28
  40. package/Common/DataModel/PolyData/Constants.d.ts +2 -2
  41. package/Common/DataModel/PolyData.d.ts +143 -140
  42. package/Common/DataModel/PolyLine.d.ts +51 -28
  43. package/Common/DataModel/Polygon.d.ts +34 -33
  44. package/Common/DataModel/SelectionNode/Constants.d.ts +18 -18
  45. package/Common/DataModel/SelectionNode.d.ts +62 -56
  46. package/Common/DataModel/Sphere.d.ts +74 -72
  47. package/Common/DataModel/Spline1D.d.ts +60 -40
  48. package/Common/DataModel/Spline3D/Constants.d.ts +3 -3
  49. package/Common/DataModel/Spline3D.d.ts +27 -22
  50. package/Common/Transform/LandmarkTransform.d.ts +67 -64
  51. package/Common/Transform/Transform.d.ts +148 -126
  52. package/Filters/General/AppendPolyData.d.ts +43 -37
  53. package/Filters/General/ClipClosedSurface.d.ts +41 -41
  54. package/Filters/General/ContourTriangulator.d.ts +38 -38
  55. package/Filters/General/ImageCropFilter.d.ts +48 -44
  56. package/Filters/General/ImageDataOutlineFilter.d.ts +41 -37
  57. package/Filters/General/ImageOutlineFilter.d.ts +41 -37
  58. package/Filters/General/ImageSliceFilter.d.ts +38 -34
  59. package/Filters/General/ImageStreamline.d.ts +120 -93
  60. package/Filters/General/LineFilter.d.ts +18 -15
  61. package/Filters/General/OutlineFilter.d.ts +19 -16
  62. package/Filters/General/TriangleFilter.d.ts +23 -19
  63. package/Filters/General/TubeFilter.d.ts +194 -188
  64. package/Filters/Sources/Arrow2DSource.d.ts +151 -143
  65. package/Filters/Sources/ArrowSource.d.ts +148 -140
  66. package/Filters/Sources/CircleSource.d.ts +138 -130
  67. package/Filters/Sources/ConeSource.d.ts +167 -159
  68. package/Filters/Sources/CubeSource.d.ts +198 -181
  69. package/Filters/Sources/Cursor3D.d.ts +171 -164
  70. package/Filters/Sources/CylinderSource.d.ts +173 -166
  71. package/Filters/Sources/LineSource.d.ts +100 -92
  72. package/Filters/Sources/PlaneSource.d.ts +211 -203
  73. package/Filters/Sources/PointSource.d.ts +90 -82
  74. package/Filters/Sources/SphereSource.d.ts +171 -164
  75. package/Filters/Texture/TextureMapToPlane.d.ts +213 -208
  76. package/Filters/Texture/TextureMapToSphere.d.ts +77 -72
  77. package/IO/Core/DataAccessHelper/HtmlDataAccessHelper.d.ts +18 -5
  78. package/IO/Core/DataAccessHelper/HttpDataAccessHelper.d.ts +18 -5
  79. package/IO/Core/DataAccessHelper/JSZipDataAccessHelper.d.ts +19 -6
  80. package/IO/Core/DataAccessHelper/LiteHttpDataAccessHelper.d.ts +18 -5
  81. package/IO/Core/DataAccessHelper.d.ts +36 -22
  82. package/IO/Core/HttpDataSetReader.d.ts +279 -249
  83. package/IO/Core/HttpSceneLoader.d.ts +92 -87
  84. package/IO/Core/ImageStream/DefaultProtocol.d.ts +27 -20
  85. package/IO/Core/ImageStream/ViewStream.d.ts +7 -7
  86. package/IO/Core/ImageStream.d.ts +52 -47
  87. package/IO/Core/WSLinkClient.d.ts +12 -6
  88. package/IO/Geometry/DracoReader.d.ts +106 -88
  89. package/IO/Geometry/PLYReader.d.ts +92 -75
  90. package/IO/Geometry/PLYWriter.d.ts +163 -148
  91. package/IO/Geometry/STLReader.d.ts +92 -77
  92. package/IO/Geometry/STLWriter.d.ts +50 -42
  93. package/IO/Misc/ElevationReader.d.ts +155 -139
  94. package/IO/Misc/ITKImageReader.d.ts +58 -50
  95. package/IO/Misc/ITKPolyDataReader.d.ts +58 -50
  96. package/IO/Misc/JSONNucleoReader.d.ts +74 -57
  97. package/IO/Misc/JSONReader.d.ts +78 -72
  98. package/IO/Misc/MTLReader.d.ts +143 -130
  99. package/IO/Misc/OBJReader.d.ts +129 -110
  100. package/IO/Misc/PDBReader.d.ts +109 -93
  101. package/IO/XML/XMLImageDataReader.d.ts +31 -19
  102. package/IO/XML/XMLPolyDataReader.d.ts +31 -19
  103. package/IO/XML/XMLReader.d.ts +141 -105
  104. package/Imaging/Core/AbstractImageInterpolator/Constants.d.ts +2 -2
  105. package/Imaging/Core/ImageReslice.d.ts +231 -173
  106. package/Interaction/Style/InteractorStyleHMDXR.d.ts +7 -3
  107. package/Interaction/Style/InteractorStyleImage.d.ts +5 -4
  108. package/Interaction/Style/InteractorStyleTrackballCamera.d.ts +17 -6
  109. package/Interaction/Widgets/OrientationMarkerWidget/Constants.d.ts +5 -5
  110. package/Interaction/Widgets/OrientationMarkerWidget.d.ts +146 -142
  111. package/Proxy/Core/ViewProxy.d.ts +1 -1
  112. package/Proxy/Representations/GeometryRepresentationProxy.d.ts +28 -27
  113. package/Proxy/Representations/ResliceRepresentationProxy.d.ts +0 -1
  114. package/Rendering/Core/AbstractImageMapper.d.ts +125 -113
  115. package/Rendering/Core/AbstractMapper.d.ts +58 -52
  116. package/Rendering/Core/AbstractMapper3D.d.ts +32 -25
  117. package/Rendering/Core/AbstractPicker.d.ts +91 -88
  118. package/Rendering/Core/Actor.d.ts +117 -114
  119. package/Rendering/Core/Actor2D.d.ts +101 -98
  120. package/Rendering/Core/AnnotatedCubeActor.d.ts +58 -53
  121. package/Rendering/Core/AxesActor.d.ts +10 -4
  122. package/Rendering/Core/Camera.d.ts +739 -727
  123. package/Rendering/Core/CellPicker.d.ts +87 -77
  124. package/Rendering/Core/ColorTransferFunction/Constants.d.ts +2 -2
  125. package/Rendering/Core/ColorTransferFunction/CssFilters.d.ts +39 -13
  126. package/Rendering/Core/ColorTransferFunction.d.ts +3 -6
  127. package/Rendering/Core/Coordinate/Constants.d.ts +1 -1
  128. package/Rendering/Core/Coordinate.d.ts +154 -150
  129. package/Rendering/Core/Follower.d.ts +52 -47
  130. package/Rendering/Core/Glyph3DMapper/Constants.d.ts +8 -8
  131. package/Rendering/Core/Glyph3DMapper.d.ts +152 -149
  132. package/Rendering/Core/ImageArrayMapper.d.ts +237 -213
  133. package/Rendering/Core/ImageCPRMapper/Constants.d.ts +4 -4
  134. package/Rendering/Core/ImageCPRMapper.d.ts +424 -392
  135. package/Rendering/Core/ImageMapper/Constants.d.ts +8 -8
  136. package/Rendering/Core/ImageMapper.d.ts +292 -268
  137. package/Rendering/Core/ImageProperty/Constants.d.ts +3 -3
  138. package/Rendering/Core/ImageProperty.d.ts +204 -197
  139. package/Rendering/Core/ImageResliceMapper/Constants.d.ts +5 -5
  140. package/Rendering/Core/ImageResliceMapper.d.ts +235 -210
  141. package/Rendering/Core/ImageSlice.d.ts +142 -136
  142. package/Rendering/Core/InteractorObserver.d.ts +41 -32
  143. package/Rendering/Core/Light.d.ts +321 -318
  144. package/Rendering/Core/Mapper/Constants.d.ts +14 -14
  145. package/Rendering/Core/Mapper.d.ts +539 -512
  146. package/Rendering/Core/Mapper2D.d.ts +342 -330
  147. package/Rendering/Core/Picker.d.ts +114 -106
  148. package/Rendering/Core/PixelSpaceCallbackMapper.d.ts +56 -40
  149. package/Rendering/Core/PointPicker.d.ts +42 -37
  150. package/Rendering/Core/Prop/Constants.d.ts +3 -3
  151. package/Rendering/Core/Prop.d.ts +274 -274
  152. package/Rendering/Core/Prop3D.d.ts +259 -257
  153. package/Rendering/Core/Property/Constants.d.ts +12 -12
  154. package/Rendering/Core/Property.d.ts +535 -531
  155. package/Rendering/Core/Property2D/Constants.d.ts +1 -1
  156. package/Rendering/Core/Property2D.d.ts +114 -109
  157. package/Rendering/Core/RenderWindow.d.ts +193 -191
  158. package/Rendering/Core/RenderWindowInteractor/Constants.d.ts +19 -19
  159. package/Rendering/Core/RenderWindowInteractor.d.ts +1335 -1219
  160. package/Rendering/Core/Renderer.d.ts +677 -663
  161. package/Rendering/Core/ScalarBarActor.d.ts +333 -322
  162. package/Rendering/Core/Skybox.d.ts +45 -42
  163. package/Rendering/Core/SphereMapper.d.ts +49 -44
  164. package/Rendering/Core/StickMapper.d.ts +49 -44
  165. package/Rendering/Core/Texture.d.ts +87 -80
  166. package/Rendering/Core/Viewport.d.ts +229 -222
  167. package/Rendering/Core/Volume.d.ts +78 -73
  168. package/Rendering/Core/VolumeMapper/Constants.d.ts +11 -11
  169. package/Rendering/Core/VolumeMapper.d.ts +295 -285
  170. package/Rendering/Core/VolumeProperty/Constants.d.ts +19 -19
  171. package/Rendering/Core/VolumeProperty.d.ts +375 -365
  172. package/Rendering/Misc/CanvasView.d.ts +148 -145
  173. package/Rendering/Misc/FullScreenRenderWindow.d.ts +111 -108
  174. package/Rendering/Misc/GenericRenderWindow.d.ts +69 -65
  175. package/Rendering/Misc/RenderWindowWithControlBar.d.ts +46 -39
  176. package/Rendering/Misc/SynchronizableRenderWindow/ObjectManager.d.ts +49 -29
  177. package/Rendering/Misc/SynchronizableRenderWindow.d.ts +51 -35
  178. package/Rendering/Misc/TextureLODsDownloader.d.ts +110 -106
  179. package/Rendering/OpenGL/BufferObject.d.ts +3 -2
  180. package/Rendering/OpenGL/RenderWindow.d.ts +456 -405
  181. package/Rendering/OpenGL/Texture.d.ts +66 -14
  182. package/Rendering/SceneGraph/RenderPass.d.ts +88 -83
  183. package/Rendering/SceneGraph/ViewNode.d.ts +150 -146
  184. package/Rendering/SceneGraph/ViewNodeFactory.d.ts +17 -12
  185. package/Rendering/WebXR/RenderWindowHelper/Constants.d.ts +5 -5
  186. package/Rendering/WebXR/RenderWindowHelper.d.ts +54 -49
  187. package/Widgets/Core/AbstractWidget.d.ts +30 -24
  188. package/Widgets/Core/AbstractWidgetFactory.d.ts +53 -33
  189. package/Widgets/Core/WidgetManager/Constants.d.ts +4 -4
  190. package/Widgets/Core/WidgetManager.d.ts +21 -15
  191. package/Widgets/Core/WidgetState.d.ts +11 -7
  192. package/Widgets/Manipulators/AbstractManipulator.d.ts +224 -217
  193. package/Widgets/Manipulators/LineManipulator.d.ts +33 -21
  194. package/Widgets/Manipulators/PickerManipulator.d.ts +22 -18
  195. package/Widgets/Manipulators/PlaneManipulator.d.ts +33 -22
  196. package/Widgets/Manipulators/TrackballManipulator.d.ts +40 -26
  197. package/Widgets/Representations/WidgetRepresentation.d.ts +62 -51
  198. package/Widgets/Widgets3D/ImplicitPlaneWidget.js +23 -5
  199. package/Widgets/Widgets3D/InteractiveOrientationWidget.d.ts +25 -10
  200. package/Widgets/Widgets3D/ResliceCursorWidget/Constants.d.ts +26 -7
  201. package/Widgets/Widgets3D/ResliceCursorWidget/behavior.d.ts +13 -12
  202. package/Widgets/Widgets3D/ResliceCursorWidget.d.ts +26 -15
  203. package/Widgets/Widgets3D/SeedWidget.d.ts +2 -2
  204. package/Widgets/Widgets3D/SphereWidget.d.ts +5 -3
  205. package/interfaces.d.ts +243 -243
  206. package/package.json +3 -3
@@ -4,368 +4,372 @@ import { Nullable } from './../../types';
4
4
  import vtkColorTransferFunction from './ColorTransferFunction';
5
5
  import { ColorMixPreset, InterpolationType, OpacityMode } from './VolumeProperty/Constants';
6
6
 
7
- export interface IVolumePropertyInitialValues {
8
- independentComponents?: boolean;
9
- shade?: boolean;
10
- ambient?: number;
11
- diffuse?: number;
12
- specular?: number;
13
- specularPower?: number;
14
- useLabelOutline?: boolean;
15
- labelOutlineThickness?: number | number[];
7
+ export interface IVolumePropertyInitialValues {
8
+ independentComponents?: boolean;
9
+ shade?: boolean;
10
+ ambient?: number;
11
+ diffuse?: number;
12
+ specular?: number;
13
+ specularPower?: number;
14
+ useLabelOutline?: boolean;
15
+ labelOutlineThickness?: number | number[];
16
16
  }
17
17
 
18
18
  export interface vtkVolumeProperty extends vtkObject {
19
-
20
- /**
21
- * Get the ambient lighting coefficient.
22
- */
23
- getAmbient(): number;
24
-
25
- /**
26
- * Return the `Modified Time` which is a monotonic increasing integer
27
- * global for all vtkObjects.
28
- *
29
- * This allow to solve a question such as:
30
- * - Is that object created/modified after another one?
31
- * - Do I need to re-execute this filter, or not? ...
32
- *
33
- * @return {Number} the global modified time.
34
- */
35
- getMTime(): number;
36
-
37
- /**
38
- *
39
- * @param {Number} index
40
- */
41
- getColorChannels(index: number): number;
42
-
43
- /**
44
- * Get the diffuse lighting coefficient.
45
- */
46
- getDiffuse(): number;
47
-
48
- /**
49
- *
50
- * @param {Number} index
51
- */
52
- getGradientOpacityMaximumOpacity(index: number): number;
53
-
54
- /**
55
- *
56
- * @param {Number} index
57
- */
58
- getGradientOpacityMaximumValue(index: number): number;
59
-
60
- /**
61
- *
62
- * @param {Number} index
63
- */
64
- getGradientOpacityMinimumOpacity(index: number): number;
65
-
66
- /**
67
- *
68
- * @param {Number} index
69
- */
70
- getGradientOpacityMinimumValue(index: number): number;
71
-
72
- /**
73
- *
74
- */
75
- getColorMixPreset(): Nullable<ColorMixPreset>;
76
-
77
- /**
78
- *
79
- */
80
- getIndependentComponents(): boolean;
81
-
82
- /**
83
- * Get the unit distance on which the scalar opacity transfer function is defined.
84
- * @param {Number} index
85
- */
86
- getScalarOpacityUnitDistance(index: number): number;
87
-
88
- /**
89
- * Get the currently set gray transfer function. Create one if none set.
90
- * @param {Number} index
91
- */
92
- getGrayTransferFunction(index: number): vtkPiecewiseFunction;
93
-
94
- /**
95
- *
96
- * @default FRACTIONAL
97
- */
98
- getOpacityMode(index: number): OpacityMode;
99
-
100
- /**
101
- * gets the label outline thickness
102
- */
103
- getLabelOutlineThickness(): number;
104
-
105
- /**
106
- * Get the currently set RGB transfer function. Create one if none set.
107
- * @param {Number} index
108
- */
109
- getRGBTransferFunction(index: number): vtkColorTransferFunction;
110
-
111
- /**
112
- * Get the scalar opacity transfer function. Create one if none set.
113
- * @param {Number} index
114
- */
115
- getScalarOpacity(index: number): vtkPiecewiseFunction;
116
-
117
- /**
118
- * Get the shading of a volume.
119
- */
120
- getShade(): boolean;
121
-
122
- /**
123
- *
124
- */
125
- getSpecular(): number;
126
-
127
- /**
128
- * Get the specular power.
129
- */
130
- getSpecularPower(): number;
131
-
132
- /**
133
- *
134
- * @param {Number} index
135
- */
136
- getUseGradientOpacity(index: number): boolean;
137
-
138
- /**
139
- * @see setForceNearestInterpolation
140
- * @param {Number} index
141
- */
142
- getForceNearestInterpolation(index: number): boolean;
143
-
144
- /**
145
- *
146
- */
147
- getUseLabelOutline(): boolean;
148
-
149
- /**
150
- * Set the ambient lighting coefficient.
151
- * @param {Number} ambient The ambient lighting coefficient.
152
- */
153
- setAmbient(ambient: number): boolean;
154
-
155
- /**
156
- * Set the diffuse lighting coefficient.
157
- * @param {Number} diffuse The diffuse lighting coefficient.
158
- */
159
- setDiffuse(diffuse: number): boolean;
160
-
161
- /**
162
- *
163
- * @param {Number} index
164
- * @param {Number} value
165
- */
166
- setGradientOpacityMaximumOpacity(index: number, value: number): boolean;
167
-
168
- /**
169
- *
170
- * @param {Number} index
171
- * @param {Number} value
172
- */
173
- setGradientOpacityMaximumValue(index: number, value: number): boolean;
174
-
175
- /**
176
- *
177
- * @param {Number} index
178
- * @param {Number} value
179
- */
180
- setGradientOpacityMinimumOpacity(index: number, value: number): boolean;
181
-
182
- /**
183
- *
184
- * @param {Number} index
185
- * @param {Number} value
186
- */
187
- setGradientOpacityMinimumValue(index: number, value: number): boolean;
188
-
189
- /**
190
- * Set the color of a volume to a gray transfer function
191
- * @param {Number} index
192
- * @param {vtkPiecewiseFunction} func
193
- */
194
- setGrayTransferFunction(index: number, func: vtkPiecewiseFunction): boolean;
195
-
196
- /**
197
- * Set the color mix code to a preset value
198
- * Set to null to use no preset
199
- * See the test `testColorMix` for an example on how to use this preset.
200
- *
201
- * If set to `CUSTOM`, a tag `//VTK::CustomColorMix` is made available to the
202
- * user who can user shader replacements to put its own code. The given code
203
- * will be used to mix the colors from each component.
204
- * Each component is available as a rgba vec4: `comp0`, `comp1`...
205
- * There are other useful functions or variable available. To find them,
206
- * see `//VTK::CustomComponentsColorMix::Impl` tag in `vtkVolumeFS.glsl`.
207
- */
208
- setColorMixPreset(preset: Nullable<ColorMixPreset>): boolean;
209
-
210
- /**
211
- * Does the data have independent components, or do some define color only?
212
- * If IndependentComponents is On (the default) then each component will be
213
- * independently passed through a lookup table to determine RGBA, shaded.
214
- *
215
- * Some volume Mappers can handle 1 to 4 component unsigned char or unsigned
216
- * short data (see each mapper header file to determine functionality). If
217
- * IndependentComponents is Off, then you must have either 2 or 4 component
218
- * data. For 2 component data, the first is passed through the first color
219
- * transfer function and the second component is passed through the first
220
- * scalar opacity (and gradient opacity) transfer function. Normals will be
221
- * generated off of the second component. When using gradient based opacity
222
- * modulation, the gradients are computed off of the second component. For 4
223
- * component data, the first three will directly represent RGB (no lookup
224
- * table). The fourth component will be passed through the first scalar
225
- * opacity transfer function for opacity and first gradient opacity transfer
226
- * function for gradient based opacity modulation. Normals will be generated
227
- * from the fourth component. When using gradient based opacity modulation,
228
- * the gradients are computed off of the fourth component.
229
- * @param {Boolean} independentComponents
230
- */
231
- setIndependentComponents(independentComponents: boolean): boolean;
232
-
233
- /**
234
- * It will set the label outline thickness for the labelmaps. It can accept
235
- * a single number or an array of numbers. If a single number is provided,
236
- * it will be used for all the segments. If an array is provided, it indicates
237
- * the thickness for each segment index. For instance if you have a labelmap
238
- * with 3 segments (0: background 1: liver 2: tumor), you can set the thickness
239
- * to [2,4] to have a thicker outline for the tumor (thickness 4). It should be
240
- * noted that the thickness is in pixel and also the first array value will
241
- * control the default thickness for all labels when 0 or not specified.
242
- *
243
- * @param {Number | Number[]} labelOutlineThickness
244
- */
245
- setLabelOutlineThickness(labelOutlineThickness: number | number[]): boolean;
246
-
247
-
248
- /**
249
- *
250
- * @param {Number} index
251
- * @param {Number} value
252
- */
253
- setOpacityMode(index: number, value: number): boolean;
254
-
255
- /**
256
- * Set the unit distance on which the scalar opacity transfer function is
257
- * defined.
258
- * @param {Number} index
259
- * @param {Number} value
260
- */
261
- setScalarOpacityUnitDistance(index: number, value: number): boolean;
262
-
263
- /**
264
- * Set the shading of a volume.
265
- *
266
- * If shading is turned off, then the mapper for the volume will not perform
267
- * shading calculations. If shading is turned on, the mapper may perform
268
- * shading calculations - in some cases shading does not apply (for example,
269
- * in a maximum intensity projection) and therefore shading will not be
270
- * performed even if this flag is on. For a compositing type of mapper,
271
- * turning shading off is generally the same as setting ambient=1,
272
- * diffuse=0, specular=0. Shading can be independently turned on/off per
273
- * component.
274
- * @param {Boolean} shade
275
- */
276
- setShade(shade: boolean): boolean;
277
-
278
- /**
279
- *
280
- * @param {Number} specular
281
- */
282
- setSpecular(specular: number): boolean;
283
-
284
- /**
285
- * Set the specular power.
286
- * @param {Number} specularPower
287
- */
288
- setSpecularPower(specularPower: number): boolean;
289
-
290
- /**
291
- *
292
- * @param {Number} index
293
- * @param {Boolean} value
294
- */
295
- setUseGradientOpacity(index: number, value: boolean): boolean;
296
-
297
- /**
298
- *
299
- * @param {Boolean} useLabelOutline
300
- */
301
- setUseLabelOutline(useLabelOutline: boolean): boolean;
302
-
303
- /**
304
- * Set the color of a volume to an RGB transfer function
305
- * @param {Number} index
306
- * @param {vtkColorTransferFunction} func
307
- */
308
- setRGBTransferFunction(index: number, func?: Nullable<vtkColorTransferFunction>): boolean;
309
-
310
- /**
311
- * Set the scalar opacity of a volume to a transfer function
312
- * @param {Number} index
313
- * @param {vtkPiecewiseFunction} func
314
- */
315
- setScalarOpacity(index: number, func?: Nullable<vtkPiecewiseFunction>): boolean;
316
-
317
- /**
318
- * Set the scalar component weights.
319
- * @param {Number} index
320
- * @param {Number} value
321
- */
322
- setComponentWeight(index: number, value: number): boolean;
323
-
324
- /**
325
- * Force the nearest neighbor interpolation of one or more of the components
326
- * The interpolation for the rest of the volume is set using `setInterpolationType`
327
- * @see setInterpolationType
328
- * @param {Number} index
329
- * @param {Boolean} value
330
- */
331
- setForceNearestInterpolation(index: number, value: boolean): boolean;
332
-
333
- /**
334
- * Get the scalar component weights.
335
- * @param {Number} index
336
- */
337
- getComponentWeight(index: number): number;
338
-
339
- /**
340
- * Set the interpolation type for sampling a volume.
341
- * @param {InterpolationType} interpolationType
342
- */
343
- setInterpolationType(interpolationType: InterpolationType): boolean;
344
-
345
- /**
346
- * Set interpolation type to NEAREST
347
- */
348
- setInterpolationTypeToNearest(): boolean;
349
-
350
- /**
351
- * Set interpolation type to LINEAR
352
- */
353
- setInterpolationTypeToLinear(): boolean;
354
-
355
- /**
356
- * Set interpolation type to FAST_LINEAR
357
- */
358
- setInterpolationTypeToFastLinear(): boolean;
359
-
360
- /**
361
- * Get the interpolation type for sampling a volume.
362
- */
363
- getInterpolationType(): InterpolationType;
364
-
365
- /**
366
- * Get the interpolation type for sampling a volume as a string.
367
- */
368
- getInterpolationTypeAsString(): string;
19
+ /**
20
+ * Get the ambient lighting coefficient.
21
+ */
22
+ getAmbient(): number;
23
+
24
+ /**
25
+ * Return the `Modified Time` which is a monotonic increasing integer
26
+ * global for all vtkObjects.
27
+ *
28
+ * This allow to solve a question such as:
29
+ * - Is that object created/modified after another one?
30
+ * - Do I need to re-execute this filter, or not? ...
31
+ *
32
+ * @return {Number} the global modified time.
33
+ */
34
+ getMTime(): number;
35
+
36
+ /**
37
+ *
38
+ * @param {Number} index
39
+ */
40
+ getColorChannels(index: number): number;
41
+
42
+ /**
43
+ * Get the diffuse lighting coefficient.
44
+ */
45
+ getDiffuse(): number;
46
+
47
+ /**
48
+ *
49
+ * @param {Number} index
50
+ */
51
+ getGradientOpacityMaximumOpacity(index: number): number;
52
+
53
+ /**
54
+ *
55
+ * @param {Number} index
56
+ */
57
+ getGradientOpacityMaximumValue(index: number): number;
58
+
59
+ /**
60
+ *
61
+ * @param {Number} index
62
+ */
63
+ getGradientOpacityMinimumOpacity(index: number): number;
64
+
65
+ /**
66
+ *
67
+ * @param {Number} index
68
+ */
69
+ getGradientOpacityMinimumValue(index: number): number;
70
+
71
+ /**
72
+ *
73
+ */
74
+ getColorMixPreset(): Nullable<ColorMixPreset>;
75
+
76
+ /**
77
+ *
78
+ */
79
+ getIndependentComponents(): boolean;
80
+
81
+ /**
82
+ * Get the unit distance on which the scalar opacity transfer function is defined.
83
+ * @param {Number} index
84
+ */
85
+ getScalarOpacityUnitDistance(index: number): number;
86
+
87
+ /**
88
+ * Get the currently set gray transfer function. Create one if none set.
89
+ * @param {Number} index
90
+ */
91
+ getGrayTransferFunction(index: number): vtkPiecewiseFunction;
92
+
93
+ /**
94
+ *
95
+ * @default FRACTIONAL
96
+ */
97
+ getOpacityMode(index: number): OpacityMode;
98
+
99
+ /**
100
+ * gets the label outline thickness
101
+ */
102
+ getLabelOutlineThickness(): number;
103
+
104
+ /**
105
+ * Get the currently set RGB transfer function. Create one if none set.
106
+ * @param {Number} index
107
+ */
108
+ getRGBTransferFunction(index: number): vtkColorTransferFunction;
109
+
110
+ /**
111
+ * Get the scalar opacity transfer function. Create one if none set.
112
+ * @param {Number} index
113
+ */
114
+ getScalarOpacity(index: number): vtkPiecewiseFunction;
115
+
116
+ /**
117
+ * Get the shading of a volume.
118
+ */
119
+ getShade(): boolean;
120
+
121
+ /**
122
+ *
123
+ */
124
+ getSpecular(): number;
125
+
126
+ /**
127
+ * Get the specular power.
128
+ */
129
+ getSpecularPower(): number;
130
+
131
+ /**
132
+ *
133
+ * @param {Number} index
134
+ */
135
+ getUseGradientOpacity(index: number): boolean;
136
+
137
+ /**
138
+ * @see setForceNearestInterpolation
139
+ * @param {Number} index
140
+ */
141
+ getForceNearestInterpolation(index: number): boolean;
142
+
143
+ /**
144
+ *
145
+ */
146
+ getUseLabelOutline(): boolean;
147
+
148
+ /**
149
+ * Set the ambient lighting coefficient.
150
+ * @param {Number} ambient The ambient lighting coefficient.
151
+ */
152
+ setAmbient(ambient: number): boolean;
153
+
154
+ /**
155
+ * Set the diffuse lighting coefficient.
156
+ * @param {Number} diffuse The diffuse lighting coefficient.
157
+ */
158
+ setDiffuse(diffuse: number): boolean;
159
+
160
+ /**
161
+ *
162
+ * @param {Number} index
163
+ * @param {Number} value
164
+ */
165
+ setGradientOpacityMaximumOpacity(index: number, value: number): boolean;
166
+
167
+ /**
168
+ *
169
+ * @param {Number} index
170
+ * @param {Number} value
171
+ */
172
+ setGradientOpacityMaximumValue(index: number, value: number): boolean;
173
+
174
+ /**
175
+ *
176
+ * @param {Number} index
177
+ * @param {Number} value
178
+ */
179
+ setGradientOpacityMinimumOpacity(index: number, value: number): boolean;
180
+
181
+ /**
182
+ *
183
+ * @param {Number} index
184
+ * @param {Number} value
185
+ */
186
+ setGradientOpacityMinimumValue(index: number, value: number): boolean;
187
+
188
+ /**
189
+ * Set the color of a volume to a gray transfer function
190
+ * @param {Number} index
191
+ * @param {vtkPiecewiseFunction} func
192
+ */
193
+ setGrayTransferFunction(index: number, func: vtkPiecewiseFunction): boolean;
194
+
195
+ /**
196
+ * Set the color mix code to a preset value
197
+ * Set to null to use no preset
198
+ * See the test `testColorMix` for an example on how to use this preset.
199
+ *
200
+ * If set to `CUSTOM`, a tag `//VTK::CustomColorMix` is made available to the
201
+ * user who can user shader replacements to put its own code. The given code
202
+ * will be used to mix the colors from each component.
203
+ * Each component is available as a rgba vec4: `comp0`, `comp1`...
204
+ * There are other useful functions or variable available. To find them,
205
+ * see `//VTK::CustomComponentsColorMix::Impl` tag in `vtkVolumeFS.glsl`.
206
+ */
207
+ setColorMixPreset(preset: Nullable<ColorMixPreset>): boolean;
208
+
209
+ /**
210
+ * Does the data have independent components, or do some define color only?
211
+ * If IndependentComponents is On (the default) then each component will be
212
+ * independently passed through a lookup table to determine RGBA, shaded.
213
+ *
214
+ * Some volume Mappers can handle 1 to 4 component unsigned char or unsigned
215
+ * short data (see each mapper header file to determine functionality). If
216
+ * IndependentComponents is Off, then you must have either 2 or 4 component
217
+ * data. For 2 component data, the first is passed through the first color
218
+ * transfer function and the second component is passed through the first
219
+ * scalar opacity (and gradient opacity) transfer function. Normals will be
220
+ * generated off of the second component. When using gradient based opacity
221
+ * modulation, the gradients are computed off of the second component. For 4
222
+ * component data, the first three will directly represent RGB (no lookup
223
+ * table). The fourth component will be passed through the first scalar
224
+ * opacity transfer function for opacity and first gradient opacity transfer
225
+ * function for gradient based opacity modulation. Normals will be generated
226
+ * from the fourth component. When using gradient based opacity modulation,
227
+ * the gradients are computed off of the fourth component.
228
+ * @param {Boolean} independentComponents
229
+ */
230
+ setIndependentComponents(independentComponents: boolean): boolean;
231
+
232
+ /**
233
+ * It will set the label outline thickness for the labelmaps. It can accept
234
+ * a single number or an array of numbers. If a single number is provided,
235
+ * it will be used for all the segments. If an array is provided, it indicates
236
+ * the thickness for each segment index. For instance if you have a labelmap
237
+ * with 3 segments (0: background 1: liver 2: tumor), you can set the thickness
238
+ * to [2,4] to have a thicker outline for the tumor (thickness 4). It should be
239
+ * noted that the thickness is in pixel and also the first array value will
240
+ * control the default thickness for all labels when 0 or not specified.
241
+ *
242
+ * @param {Number | Number[]} labelOutlineThickness
243
+ */
244
+ setLabelOutlineThickness(labelOutlineThickness: number | number[]): boolean;
245
+
246
+ /**
247
+ *
248
+ * @param {Number} index
249
+ * @param {Number} value
250
+ */
251
+ setOpacityMode(index: number, value: number): boolean;
252
+
253
+ /**
254
+ * Set the unit distance on which the scalar opacity transfer function is
255
+ * defined.
256
+ * @param {Number} index
257
+ * @param {Number} value
258
+ */
259
+ setScalarOpacityUnitDistance(index: number, value: number): boolean;
260
+
261
+ /**
262
+ * Set the shading of a volume.
263
+ *
264
+ * If shading is turned off, then the mapper for the volume will not perform
265
+ * shading calculations. If shading is turned on, the mapper may perform
266
+ * shading calculations - in some cases shading does not apply (for example,
267
+ * in a maximum intensity projection) and therefore shading will not be
268
+ * performed even if this flag is on. For a compositing type of mapper,
269
+ * turning shading off is generally the same as setting ambient=1,
270
+ * diffuse=0, specular=0. Shading can be independently turned on/off per
271
+ * component.
272
+ * @param {Boolean} shade
273
+ */
274
+ setShade(shade: boolean): boolean;
275
+
276
+ /**
277
+ *
278
+ * @param {Number} specular
279
+ */
280
+ setSpecular(specular: number): boolean;
281
+
282
+ /**
283
+ * Set the specular power.
284
+ * @param {Number} specularPower
285
+ */
286
+ setSpecularPower(specularPower: number): boolean;
287
+
288
+ /**
289
+ *
290
+ * @param {Number} index
291
+ * @param {Boolean} value
292
+ */
293
+ setUseGradientOpacity(index: number, value: boolean): boolean;
294
+
295
+ /**
296
+ *
297
+ * @param {Boolean} useLabelOutline
298
+ */
299
+ setUseLabelOutline(useLabelOutline: boolean): boolean;
300
+
301
+ /**
302
+ * Set the color of a volume to an RGB transfer function
303
+ * @param {Number} index
304
+ * @param {vtkColorTransferFunction} func
305
+ */
306
+ setRGBTransferFunction(
307
+ index: number,
308
+ func?: Nullable<vtkColorTransferFunction>
309
+ ): boolean;
310
+
311
+ /**
312
+ * Set the scalar opacity of a volume to a transfer function
313
+ * @param {Number} index
314
+ * @param {vtkPiecewiseFunction} func
315
+ */
316
+ setScalarOpacity(
317
+ index: number,
318
+ func?: Nullable<vtkPiecewiseFunction>
319
+ ): boolean;
320
+
321
+ /**
322
+ * Set the scalar component weights.
323
+ * @param {Number} index
324
+ * @param {Number} value
325
+ */
326
+ setComponentWeight(index: number, value: number): boolean;
327
+
328
+ /**
329
+ * Force the nearest neighbor interpolation of one or more of the components
330
+ * The interpolation for the rest of the volume is set using `setInterpolationType`
331
+ * @see setInterpolationType
332
+ * @param {Number} index
333
+ * @param {Boolean} value
334
+ */
335
+ setForceNearestInterpolation(index: number, value: boolean): boolean;
336
+
337
+ /**
338
+ * Get the scalar component weights.
339
+ * @param {Number} index
340
+ */
341
+ getComponentWeight(index: number): number;
342
+
343
+ /**
344
+ * Set the interpolation type for sampling a volume.
345
+ * @param {InterpolationType} interpolationType
346
+ */
347
+ setInterpolationType(interpolationType: InterpolationType): boolean;
348
+
349
+ /**
350
+ * Set interpolation type to NEAREST
351
+ */
352
+ setInterpolationTypeToNearest(): boolean;
353
+
354
+ /**
355
+ * Set interpolation type to LINEAR
356
+ */
357
+ setInterpolationTypeToLinear(): boolean;
358
+
359
+ /**
360
+ * Set interpolation type to FAST_LINEAR
361
+ */
362
+ setInterpolationTypeToFastLinear(): boolean;
363
+
364
+ /**
365
+ * Get the interpolation type for sampling a volume.
366
+ */
367
+ getInterpolationType(): InterpolationType;
368
+
369
+ /**
370
+ * Get the interpolation type for sampling a volume as a string.
371
+ */
372
+ getInterpolationTypeAsString(): string;
369
373
  }
370
374
 
371
375
  /**
@@ -375,12 +379,18 @@ export interface vtkVolumeProperty extends vtkObject {
375
379
  * @param model object on which data structure will be bounds (protected)
376
380
  * @param {IVolumePropertyInitialValues} [initialValues] (default: {})
377
381
  */
378
- export function extend(publicAPI: object, model: object, initialValues?: IVolumePropertyInitialValues): void;
382
+ export function extend(
383
+ publicAPI: object,
384
+ model: object,
385
+ initialValues?: IVolumePropertyInitialValues
386
+ ): void;
379
387
 
380
388
  /**
381
389
  * Method use to create a new instance of vtkVolumeProperty
382
390
  */
383
- export function newInstance(initialValues?: IVolumePropertyInitialValues): vtkVolumeProperty;
391
+ export function newInstance(
392
+ initialValues?: IVolumePropertyInitialValues
393
+ ): vtkVolumeProperty;
384
394
 
385
395
  /**
386
396
  * vtkVolumeProperty is used to represent common properties associated
@@ -448,9 +458,9 @@ export function newInstance(initialValues?: IVolumePropertyInitialValues): vtkVo
448
458
  * ```
449
459
  */
450
460
  export declare const vtkVolumeProperty: {
451
- newInstance: typeof newInstance;
452
- extend: typeof extend;
453
- InterpolationType: typeof InterpolationType;
454
- OpacityMode: typeof OpacityMode;
461
+ newInstance: typeof newInstance;
462
+ extend: typeof extend;
463
+ InterpolationType: typeof InterpolationType;
464
+ OpacityMode: typeof OpacityMode;
455
465
  };
456
466
  export default vtkVolumeProperty;