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/OPC_AABBTree.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Opcode/OPC_AABBTree.cpp') diff --git a/Opcode/OPC_AABBTree.cpp b/Opcode/OPC_AABBTree.cpp index 5738f9b..e7ac631 100644 --- a/Opcode/OPC_AABBTree.cpp +++ b/Opcode/OPC_AABBTree.cpp @@ -164,7 +164,7 @@ bool AABBTreeNode::Subdivide(AABBTreeBuilder* builder) if(builder->mSettings.mRules & SPLIT_LARGEST_AXIS) { // Find the largest axis to split along - Point Extents; mBV.GetExtents(Extents); // Box extents + IcePoint Extents; mBV.GetExtents(Extents); // Box extents udword Axis = Extents.LargestAxis(); // Index of largest axis // Split along the axis @@ -176,7 +176,7 @@ bool AABBTreeNode::Subdivide(AABBTreeBuilder* builder) else if(builder->mSettings.mRules & SPLIT_SPLATTER_POINTS) { // Compute the means - Point Means(0.0f, 0.0f, 0.0f); + IcePoint Means(0.0f, 0.0f, 0.0f); for(udword i=0;i