Skip to content

Commit

Permalink
fix(OrientationMarkerTool): R and L are swapped (#1395)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoostJM committed Jul 22, 2024
1 parent 979c403 commit 33b255a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tools/src/tools/OrientationMarkerTool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ class OrientationMarkerTool extends BaseTool {
overlayConfiguration: {
[OrientationMarkerTool.OVERLAY_MARKER_TYPES.ANNOTATED_CUBE]: {
faceProperties: {
xPlus: { text: 'R', faceColor: '#ffff00', faceRotation: 90 },
xMinus: { text: 'L', faceColor: '#ffff00', faceRotation: 270 },
xPlus: { text: 'L', faceColor: '#ffff00', faceRotation: 90 },
xMinus: { text: 'R', faceColor: '#ffff00', faceRotation: 270 },
yPlus: {
text: 'P',
faceColor: '#00ffff',
Expand Down

0 comments on commit 33b255a

Please sign in to comment.