Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-05 19:04:56 +0000
committerStijn Buys <ingar@osirion.org>2008-10-05 19:04:56 +0000
commita8c367416c28edb47c8f8c447b515cca4080adc2 (patch)
treee2ec21d060bff81361e39a784732813d1ad4585d /src/math/vector3f.h
parentda9beb729c58ca2d91f67ab85a6728b628c27cf2 (diff)
adds vector2f to the math library
Diffstat (limited to 'src/math/vector3f.h')
-rw-r--r--src/math/vector3f.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/math/vector3f.h b/src/math/vector3f.h
index 25fcbff..20be5ab 100644
--- a/src/math/vector3f.h
+++ b/src/math/vector3f.h
@@ -1,5 +1,5 @@
/*
- math/vector3f.cc
+ math/vector3f.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
@@ -7,16 +7,13 @@
#ifndef __INCLUDED_MATH_VECTOR3F_H__
#define __INCLUDED_MATH_VECTOR3F_H__
-// project headers
-#include "math/vector3f.h"
-
-// C++ headers
#include <iostream>
+#include "math/vector3f.h"
namespace math
{
-/// a point or vector in 3D-space
+/// a point or vector in 3D space
/** An instance of this class represents a point in 3D-space or a 3D-vector
* and forms the basic building block for all spatial calculations.
*/