@kitware/vtk.js 32.6.0 → 32.6.2
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.
|
@@ -94,6 +94,28 @@ export interface vtkImageProperty extends vtkObject {
|
|
|
94
94
|
*/
|
|
95
95
|
getScalarOpacity(idx?: number): vtkPiecewiseFunction;
|
|
96
96
|
|
|
97
|
+
/**
|
|
98
|
+
* Enable label outline rendering.
|
|
99
|
+
* @param {Boolean} useLabelOutline
|
|
100
|
+
*/
|
|
101
|
+
setUseLabelOutline(useLabelOutline: boolean): boolean;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Check if label outline rendering.
|
|
105
|
+
*/
|
|
106
|
+
getUseLabelOutline(): boolean;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Set the 0 to 1 opacity of the label outline.
|
|
110
|
+
* @param {Number} opacity
|
|
111
|
+
*/
|
|
112
|
+
setLabelOutlineOpacity(opacity: number): boolean;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Get the 0 to 1 opacity of the label outline.
|
|
116
|
+
*/
|
|
117
|
+
getLabelOutlineOpacity(): number;
|
|
118
|
+
|
|
97
119
|
/**
|
|
98
120
|
* gets the label outline thickness
|
|
99
121
|
*/
|