Changeset 591f15 for molecuilder


Ignore:
Timestamp:
Jan 14, 2010, 6:06:40 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
551a58
Parents:
a922f3
Message:

BUGFIX: Tesselation::IsInnerPoint() returned wrong result.

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/tesselation.cpp

    ra922f3 r591f15  
    33593359bool Tesselation::IsInnerPoint(const Vector &Point, const LinkedCell* const LC) const
    33603360{
    3361   return (GetDistanceSquaredToSurface(Point, LC) > MYEPSILON);
     3361  return (GetDistanceSquaredToSurface(Point, LC) < MYEPSILON);
    33623362}
    33633363
Note: See TracChangeset for help on using the changeset viewer.