source:
trunk/UPV/GTGeometry/src/GeoVector2.cpp
@
138
Revision 138, 334 bytes checked in by hidalgo, 19 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[138] | 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.