From 5e6773397cc101c7c3d08482efc456daa91734e9 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Oct 2021 22:52:04 +0200 Subject: Switched to use only one version of Opcode --- Opcode/Ice/IcePlane.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Opcode/Ice/IcePlane.cpp') diff --git a/Opcode/Ice/IcePlane.cpp b/Opcode/Ice/IcePlane.cpp index cd4758c..15e907c 100644 --- a/Opcode/Ice/IcePlane.cpp +++ b/Opcode/Ice/IcePlane.cpp @@ -9,8 +9,8 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /** - * Plane class. - * \class Plane + * IcePlane class. + * \class IcePlane * \author Pierre Terdiman * \version 1.0 */ @@ -31,7 +31,7 @@ using namespace IceMaths; * \return Self-reference */ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -Plane& Plane::Set(const IcePoint& p0, const IcePoint& p1, const IcePoint& p2) +IcePlane& IcePlane::Set(const IcePoint& p0, const IcePoint& p1, const IcePoint& p2) { IcePoint Edge0 = p1 - p0; IcePoint Edge1 = p2 - p0; -- cgit v1.1