source:
GTP/trunk/Lib/Geom/shared/GTGeometry/src/GeoVector2.cpp
@
774
Revision 774, 334 bytes checked in by gumbau, 19 years ago (diff) |
---|
Line | |
---|---|
1 | #include "GeoVector2.h" |
2 | |
3 | namespace Geometry |
4 | { |
5 | const Vector2 Vector2::ZERO( 0, 0); |
6 | const Vector2 Vector2::UNIT_X( 1, 0); |
7 | const Vector2 Vector2::UNIT_Y( 0, 1); |
8 | const Vector2 Vector2::NEGATIVE_UNIT_X( -1, 0); |
9 | const Vector2 Vector2::NEGATIVE_UNIT_Y( 0, -1); |
10 | const Vector2 Vector2::UNIT_SCALE(1, 1); |
11 | } |
Note: See TracBrowser
for help on using the repository browser.