Working on the collision classes.

This commit is contained in:
King_DuckZ 2014-07-28 11:00:55 +02:00
parent 63bb31e728
commit 54e8a27709
9 changed files with 330 additions and 1 deletions

View file

@ -30,7 +30,7 @@ namespace cloonel {
typedef Vector<T, S> Point;
typedef T Scalar;
Line ( void ) = default;
Line ( void ) {}
Line ( const Line& parOther );
Line ( const Point& parStart, const Point& parEnd );
Line ( const Point& parStart, const Point& parDirection, Scalar parLength ) : Line(parStart, parDirection * parLength) { }