Skip to content

Commit

Permalink
SceneStructureMetric
Browse files Browse the repository at this point in the history
- Fixed bug where structure was not reset on init
  • Loading branch information
lessthanoptimal committed Oct 16, 2023
1 parent 42d096c commit 78b5b60
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,10 @@ public void init( int numPoints, int dof ) {
for (int i = 0; i < numPoints; i++) {
points[i] = new Point(dof);
}
} else {
for (int i = 0; i < numPoints; i++) {
points[i].reset();
}
}
}

Expand Down

0 comments on commit 78b5b60

Please sign in to comment.