mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Some minor fixes.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user