Skip to content

Commit

Permalink
refactor(picker): Refactor point picker function
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigobasilio2022 authored Nov 3, 2023
1 parent 24dd369 commit 4766908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Rendering/Core/PointPicker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function vtkPointPicker(publicAPI, model) {
// Set our className
model.classHierarchy.push('vtkPointPicker');

publicAPI.intersectWithLine = (p1, p2, tol, mapper) => {
publicAPI.intersectWithLine = (p1, p2, tol, actor, mapper) => {
let tMin = Number.MAX_VALUE;

if (mapper.isA('vtkImageMapper') || mapper.isA('vtkImageArrayMapper')) {
Expand Down

0 comments on commit 4766908

Please sign in to comment.