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/IcePoint.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Opcode/Ice/IcePoint.h') diff --git a/Opcode/Ice/IcePoint.h b/Opcode/Ice/IcePoint.h index 7f55a27..bb06684 100644 --- a/Opcode/Ice/IcePoint.h +++ b/Opcode/Ice/IcePoint.h @@ -14,7 +14,7 @@ // Forward declarations class HPoint; - class Plane; + class IcePlane; class Matrix3x3; class Matrix4x4; @@ -371,13 +371,13 @@ IcePoint& Refract(const IcePoint& eye, const IcePoint& n, float refractindex, IcePoint& refracted); //! Projects the IcePoint onto a plane - IcePoint& ProjectToPlane(const Plane& p); + IcePoint& ProjectToPlane(const IcePlane& p); //! Projects the IcePoint onto the screen void ProjectToScreen(float halfrenderwidth, float halfrenderheight, const Matrix4x4& mat, HPoint& projected) const; //! Unfolds the IcePoint onto a plane according to edge(a,b) - IcePoint& Unfold(Plane& p, IcePoint& a, IcePoint& b); + IcePoint& Unfold(IcePlane& p, IcePoint& a, IcePoint& b); //! Hash function from Ville Miettinen inline_ udword GetHashValue() const -- cgit v1.1