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.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Opcode/Ice/IcePoint.cpp') diff --git a/Opcode/Ice/IcePoint.cpp b/Opcode/Ice/IcePoint.cpp index 717fc53..8bf2d40 100644 --- a/Opcode/Ice/IcePoint.cpp +++ b/Opcode/Ice/IcePoint.cpp @@ -106,7 +106,7 @@ IcePoint& IcePoint::Refract(const IcePoint& eye, const IcePoint& n, float refrac return *this; } -IcePoint& IcePoint::ProjectToPlane(const Plane& p) +IcePoint& IcePoint::ProjectToPlane(const IcePlane& p) { *this-= (p.d + (*this|p.n))*p.n; return *this; -- cgit v1.1