Skip to content

Commit 1043314

Browse files
PaulHaxfloryst
authored andcommitted
fix(ImageProperty): add types of label outline funcs
1 parent 18d3a94 commit 1043314

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Sources/Rendering/Core/ImageProperty/index.d.ts

+22
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,28 @@ export interface vtkImageProperty extends vtkObject {
9494
*/
9595
getScalarOpacity(idx?: number): vtkPiecewiseFunction;
9696

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+
97119
/**
98120
* gets the label outline thickness
99121
*/

0 commit comments

Comments
 (0)