Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
doepnern committed Nov 23, 2022
1 parent b0b5c8c commit 5b2da38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/tools/src/tools/ReferenceCursors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
import { getToolGroup } from '../store/ToolGroupManager';

/**
* CursorCrosshairSyncTool is a tool that will show your cursors position in all other elements in the toolGroup if they have a matching FrameOfReference relative to its position in world space.
* ReferenceCursors is a tool that will show your cursors position in all other elements in the toolGroup if they have a matching FrameOfReference relative to its position in world space.
* Also when positionSync is enabled, it will try to sync viewports so that the cursor can be displayed in the correct position in all viewports.
*
* Configuration:
Expand Down Expand Up @@ -460,8 +460,8 @@ class ReferenceCursors extends AnnotationDisplayTool {
const isInBounds = true;
if (isInBounds) {
viewport.setCamera({ focalPoint: newFocalPoint });
const renderingeEngine = viewport.getRenderingEngine();
if (renderingeEngine) renderingeEngine.renderViewport(viewport.id);
const renderingEngine = viewport.getRenderingEngine();
if (renderingEngine) renderingEngine.renderViewport(viewport.id);
}
}
}
Expand Down

0 comments on commit 5b2da38

Please sign in to comment.