Skip to content

Commit

Permalink
If planar annotation is not visible, filter it
Browse files Browse the repository at this point in the history
  • Loading branch information
edward65 committed Nov 28, 2022
1 parent b80ea40 commit 39d44d6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/tools/src/tools/annotation/PlanarFreehandROITool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,10 @@ class PlanarFreehandROITool extends AnnotationTool {
const data = annotation.data;
const point = data.polyline[0];

if (!annotation.isVisible) {
continue;
}

// A = point
// B = focal point
// P = normal
Expand Down

0 comments on commit 39d44d6

Please sign in to comment.