Subversion Repositories gelsvn

Rev

Rev 299 | Rev 373 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 299 Rev 309
Line 6... Line 6...
6
using namespace CGLA;
6
using namespace CGLA;
7
 
7
 
8
namespace Geometry
8
namespace Geometry
9
{
9
{
10
 
10
 
11
const float EPSILON = 0.000001f;
11
const float EPSILON = 1e-10;
12
 
12
 
13
Triangle::Triangle(const CGLA::Vec3f& _v0, 
13
Triangle::Triangle(const CGLA::Vec3f& _v0, 
14
									 const CGLA::Vec3f& _v1, 
14
									 const CGLA::Vec3f& _v1, 
15
									 const CGLA::Vec3f& _v2,
15
									 const CGLA::Vec3f& _v2,
16
									 
16
									 
Line 156... Line 156...
156
#endif
156
#endif
157
 
157
 
158
	return true;
158
	return true;
159
}
159
}
160
 
160
 
161
}
-
 
162
 
161
}
-
 
162