aboutsummaryrefslogtreecommitdiff
path: root/dep/src/g3dlite/Plane.cpp
diff options
context:
space:
mode:
authorParadox <none@none>2009-02-09 08:16:34 -0500
committerParadox <none@none>2009-02-09 08:16:34 -0500
commitd230302b16474ff22a35243ffed6236ef4fc7fb9 (patch)
treee3679ad841a47b275756f2721f9aa24a3ee548a6 /dep/src/g3dlite/Plane.cpp
parentb0694d7e5e794b361fa178d55fefdb98cf47e9ca (diff)
Replace tabs with spaces in more files.
--HG-- branch : trunk
Diffstat (limited to 'dep/src/g3dlite/Plane.cpp')
-rw-r--r--dep/src/g3dlite/Plane.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/dep/src/g3dlite/Plane.cpp b/dep/src/g3dlite/Plane.cpp
index c958a10a710..5265ef8f670 100644
--- a/dep/src/g3dlite/Plane.cpp
+++ b/dep/src/g3dlite/Plane.cpp
@@ -1,8 +1,8 @@
/**
@file Plane.cpp
-
+
@maintainer Morgan McGuire, matrix@graphics3d.com
-
+
@created 2003-02-06
@edited 2006-01-29
*/
@@ -20,14 +20,14 @@ Plane::Plane(
Vector4 point2) {
debugAssertM(
- point0.w != 0 ||
- point1.w != 0 ||
+ point0.w != 0 ||
+ point1.w != 0 ||
point2.w != 0,
"At least one point must be finite.");
// Rotate the points around so that the finite points come first.
- while ((point0.w == 0) &&
+ while ((point0.w == 0) &&
((point1.w == 0) || (point2.w != 0))) {
Vector4 temp = point0;
point0 = point1;