Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Sources/Rendering/Core/ImageProperty/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,28 @@ export interface vtkImageProperty extends vtkObject {
*/
getScalarOpacity(idx?: number): vtkPiecewiseFunction;

/**
* Enable label outline rendering.
* @param {Boolean} useLabelOutline
*/
setUseLabelOutline(useLabelOutline: boolean): boolean;

/**
* Check if label outline rendering.
*/
getUseLabelOutline(): boolean;

/**
* Set the 0 to 1 opacity of the label outline.
* @param {Number} opacity
*/
setLabelOutlineOpacity(opacity: number): boolean;

/**
* Get the 0 to 1 opacity of the label outline.
*/
getLabelOutlineOpacity(): number;

/**
* gets the label outline thickness
*/
Expand Down