From 78e29455c5cb4acce769498a5a32be6a3c6085b4 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 8 Dec 2011 16:00:07 +0000 Subject: Fixing up faulty references to class "Point" to "IcePoint" --- Opcode/Ice/IceSegment.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Opcode/Ice/IceSegment.cpp') diff --git a/Opcode/Ice/IceSegment.cpp b/Opcode/Ice/IceSegment.cpp index 4b51343..f8d1553 100644 --- a/Opcode/Ice/IceSegment.cpp +++ b/Opcode/Ice/IceSegment.cpp @@ -26,10 +26,10 @@ using namespace IceMaths; -float Segment::SquareDistance(const Point& point, float* t) const +float Segment::SquareDistance(const IcePoint& Point, float* t) const { - Point Diff = point - mP0; - Point Dir = mP1 - mP0; + IcePoint Diff = Point - mP0; + IcePoint Dir = mP1 - mP0; float fT = Diff | Dir; if(fT<=0.0f) -- cgit v1.1