Some minor fixes.

This commit is contained in:
Martín Lucas Golini
2020-01-14 05:13:43 -03:00
parent b69f76e76e
commit 7b6a3d2f66
16 changed files with 37 additions and 37 deletions

View File

@@ -15,7 +15,7 @@ template <typename T> class tPoint1d {
public:
tPoint1d() {
p = 0;
t = 0.f;
t = Time::Zero;
}
tPoint1d( const T& pos, const Time& time ) {
p = pos;

View File

@@ -16,7 +16,7 @@ template <typename T> class tPoint2d {
public:
tPoint2d() {
p = Vector2<T>( 0, 0 );
t = 0;
t = Time::Zero;
}
tPoint2d( const Vector2<T>& pos, const Time& time ) {
p = pos;