|
From: SourceForge.net <no...@so...> - 2009-07-27 21:58:26
|
Bugs item #2828090, was opened at 2009-07-27 21:58 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=437247&aid=2828090&group_id=43735 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: error in PlaneOps.h Initial Comment: In whichSide with eps PlaneSide whichSide ( const Plane<DATA_TYPE>& plane, const Point<DATA_TYPE, 3>& pt, const DATA_TYPE& eps ) instead of if ( dist < eps ) return NEG_SIDE; should be if ( dist < -eps ) return NEG_SIDE; because in this case we have right situation: NEG_SIDE for (-infinity, -eps), ON_PLANE for (-eps, +eps) and POS_SIDE for (+eps, +infinity) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=437247&aid=2828090&group_id=43735 |