From 114a613b3d7f9631a70108657a3b3e997e93b8b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Bruy=C3=A8re?= Date: Mon, 31 Jul 2023 17:28:25 +0200 Subject: [PATCH] docs(VolumeMapper): fix default values getInitialInteractionScale and getInteractionSampleDistanceFactor default was wrong --- Sources/Rendering/Core/VolumeMapper/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Rendering/Core/VolumeMapper/index.d.ts b/Sources/Rendering/Core/VolumeMapper/index.d.ts index 7bf89ebfa99..c633b7b916b 100755 --- a/Sources/Rendering/Core/VolumeMapper/index.d.ts +++ b/Sources/Rendering/Core/VolumeMapper/index.d.ts @@ -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;