Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VolumeMapper fix default values in the docs #2882

Merged
merged 1 commit into from
Jul 31, 2023
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
4 changes: 2 additions & 2 deletions Sources/Rendering/Core/VolumeMapper/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ export interface vtkVolumeMapper extends vtkAbstractMapper {
* Get at what scale the quality is reduced when interacting for the first time with the volume
* It should should be set before any call to render for this volume
* The higher the scale is, the lower the quality of rendering is during interaction
* @default 16
* @default 1
*/
getInitialInteractionScale(): number;

/**
* Get by how much the sample distance should be increased when interacting
* This feature is only implemented in the OpenGL volume mapper
* @default 4
* @default 1
*/
getInteractionSampleDistanceFactor(): number;

Expand Down
Loading