Division by zero in vtkPlaneWidget::MoveOrigin
Sometimes it happens that motion vector is zero and the plane widget crashes. So it is necessary to add check for zero v norm. Like this if (vN < 1e-6) return;
Sometimes it happens that motion vector is zero and the plane widget crashes. So it is necessary to add check for zero v norm. Like this if (vN < 1e-6) return;