We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56181a2 + 230092f commit 5f4a729Copy full SHA for 5f4a729
Sources/Widgets/Widgets3D/ResliceCursorWidget/example/index.js
@@ -48,7 +48,8 @@ const widget = vtkResliceCursorWidget.newInstance();
48
const widgetState = widget.getWidgetState();
49
widgetState.setKeepOrthogonality(true);
50
widgetState.setOpacity(0.6);
51
-widgetState.setSphereRadius(10);
+// Use devicePixelRatio in order to have the same display handle size on all devices
52
+widgetState.setSphereRadius(10 * window.devicePixelRatio);
53
widgetState.setLineThickness(5);
54
55
const showDebugActors = true;
0 commit comments