From 7922c3b625c2cf1c9c8cf8a4035ac79731ce12f5 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 18 Jun 2013 12:02:17 -0700 Subject: [PATCH] fixed typo --- libraries/voxels/src/VoxelProjectedPolygon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/voxels/src/VoxelProjectedPolygon.cpp b/libraries/voxels/src/VoxelProjectedPolygon.cpp index cee5399240..baef436d08 100644 --- a/libraries/voxels/src/VoxelProjectedPolygon.cpp +++ b/libraries/voxels/src/VoxelProjectedPolygon.cpp @@ -60,7 +60,7 @@ bool VoxelProjectedPolygon::occludes(const VoxelProjectedPolygon& occludee) cons return false; } - // first check the bounding boxes, the occludee mush be fully within the boounding box of this shadow + // first check the bounding boxes, the occludee must be fully within the boounding box of this shadow if ((occludee.getMaxX() > getMaxX()) || (occludee.getMaxY() > getMaxY()) || (occludee.getMinX() < getMinX()) || @@ -81,7 +81,7 @@ bool VoxelProjectedPolygon::occludes(const VoxelProjectedPolygon& occludee) cons } bool VoxelProjectedPolygon::pointInside(const glm::vec2& point) const { - // first check the bounding boxes, the point mush be fully within the boounding box of this shadow + // first check the bounding boxes, the point must be fully within the boounding box of this shadow if ((point.x > getMaxX()) || (point.y > getMaxY()) || (point.x < getMinX()) ||