git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@163 92aac97c-a6ce-11dd-a772-7fcde58d38e6

This commit is contained in:
chappuis.daniel 2009-07-04 07:21:33 +00:00
parent 2b26fb38d9
commit c0b4eaaccc
2 changed files with 21 additions and 17 deletions

View File

@ -49,6 +49,8 @@ class Segment3D {
void setPointB(const Vector3D& pointB); // Set the point B void setPointB(const Vector3D& pointB); // Set the point B
}; };
// TODO : Test the Segment3D class
inline Vector3D Segment3D::getPointA() const { inline Vector3D Segment3D::getPointA() const {
return pointA; return pointA;
} }

View File

@ -25,7 +25,9 @@
// Libraries // Libraries
#include "Matrix.h" #include "Matrix.h"
#include "Matrix3x3.h" #include "Matrix3x3.h"
#include "Polygon3D.h"
#include "Quaternion.h" #include "Quaternion.h"
#include "Segment3D.h"
#include "Vector.h" #include "Vector.h"
#include "Vector3D.h" #include "Vector3D.h"
#include "constants.h" #include "constants.h"