Skip to content

Commit

Permalink
Merge pull request #66 from lindale-dev/fix-plane-distance
Browse files Browse the repository at this point in the history
Fix undefined Plane::Distance() method
  • Loading branch information
juj authored Oct 27, 2020
2 parents d7a41ca + d471362 commit cb8624e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Geometry/Plane.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,7 @@ class Plane
of this plane. See the SignedDistance() function to produce a distance value that differentiates between the
front and back sides of this plane.
@see SignedDistance(), Intersects(), Contains(). */
float Distance(const float3 &point) const;
float Distance(const float4 &point) const;
float Distance(const vec &point) const;
float Distance(const LineSegment &lineSegment) const;
float Distance(const Sphere &sphere) const;
float Distance(const Capsule &capsule) const;
Expand Down

0 comments on commit cb8624e

Please sign in to comment.