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.
1 parent 56181a2 commit 230092fCopy full SHA for 230092f
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