Page MenuHomePhabricator

Planar figure interaction incorrect point validity check
Closed, ResolvedPublic

Description

PlanarFigureInteraction.cpp, function IsMousePositionAcceptableAsNewControlPoint(), line 933:

if ( renderer->GetDisplayGeometry()->Distance( previousPoint3D ) < 0.1 )

Should be:

if ( renderer->GetCurrentWorldPlaneGeometry()->Distance( previousPoint3D ) < 0.1 )

Not much more to add - probably a bug crawled in when migrating to new geometry concept.

Event Timeline

kislinsk triaged this task as Normal priority.Aug 10 2016, 5:08 AM
kislinsk edited projects, added MITK (2016-11); removed MITK.
kislinsk added subscribers: kolbch, wildes.
floca claimed this task.
floca added a subscriber: floca.

Proposed change is in the current master.

floca removed floca as the assignee of this task.Mar 6 2020, 10:25 AM