Skip to content

Commit

Permalink
fix(PointSet): Added missing getNumberOfPoints method
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Jan 11, 2020
1 parent 5627261 commit f04ab57
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Sources/Common/DataModel/PointSet/index.js
Expand Up @@ -22,6 +22,8 @@ function vtkPointSet(publicAPI, model) {
model.points = vtk(model.points);
}

publicAPI.getNumberOfPoints = () => model.points.getNumberOfPoints();

publicAPI.getBounds = () => model.points.getBounds();

publicAPI.computeBounds = () => {
Expand Down

0 comments on commit f04ab57

Please sign in to comment.