Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Math/overgrowth_geometry.h')
-rw-r--r--Source/Math/overgrowth_geometry.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Math/overgrowth_geometry.h b/Source/Math/overgrowth_geometry.h
index 0f81a0ff..9c226069 100644
--- a/Source/Math/overgrowth_geometry.h
+++ b/Source/Math/overgrowth_geometry.h
@@ -32,7 +32,7 @@ struct LineSegment {
};
class Box {
-public:
+ public:
static const int NUM_FACES = 6;
static const int NUM_POINTS = 8;
vec3 center;
@@ -40,7 +40,7 @@ public:
int lineCheck(const vec3& start, const vec3& end, vec3* point, vec3* normal);
int GetNearestPointIndex(const vec3& point, float& dist) const;
- int GetHitFaceIndex(const vec3& normal, const vec3& poin) const; // returns -1 if none hit
+ int GetHitFaceIndex(const vec3& normal, const vec3& poin) const; // returns -1 if none hit
bool IsInFace(const vec3& point, int which_face, float proportion_offset) const;
vec3 GetPoint(int index) const;
static vec3 GetPlaneNormal(int index);
@@ -49,7 +49,7 @@ public:
vec3 GetPlanePoint(int index) const;
bool operator==(const Box& other);
-private:
+ private:
float lineCheckFace(const vec3& start, const vec3& end, vec3* point, vec3* normal, int which_face);
};