Subversion Repositories gelsvn

Rev

Rev 290 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 290 Rev 291
Line 3... Line 3...
3
 
3
 
4
 
4
 
5
using namespace std;
5
using namespace std;
6
using namespace CGLA;
6
using namespace CGLA;
7
 
7
 
-
 
8
namespace Geometry
-
 
9
{
-
 
10
 
8
const float EPSILON = 0.000001;
11
const float EPSILON = 0.000001f;
9
 
12
 
10
Triangle::Triangle(const CGLA::Vec3f& _v0, 
13
Triangle::Triangle(const CGLA::Vec3f& _v0, 
11
									 const CGLA::Vec3f& _v1, 
14
									 const CGLA::Vec3f& _v1, 
12
									 const CGLA::Vec3f& _v2,
15
									 const CGLA::Vec3f& _v2,
13
									 
16
									 
Line 153... Line 156...
153
#endif
156
#endif
154
 
157
 
155
	return true;
158
	return true;
156
}
159
}
157
 
160
 
158
 
-
 
159
 
161
}
160
 
162