Line | |
---|
1 | #include "GeoVector3.h"
|
---|
2 |
|
---|
3 | namespace Geometry
|
---|
4 | {
|
---|
5 | const Vector3 Vector3::ZERO( 0, 0, 0 );
|
---|
6 | const Vector3 Vector3::UNIT_X( 1, 0, 0 );
|
---|
7 | const Vector3 Vector3::UNIT_Y( 0, 1, 0 );
|
---|
8 | const Vector3 Vector3::UNIT_Z( 0, 0, 1 );
|
---|
9 | const Vector3 Vector3::NEGATIVE_UNIT_X( -1, 0, 0 );
|
---|
10 | const Vector3 Vector3::NEGATIVE_UNIT_Y( 0, -1, 0 );
|
---|
11 | const Vector3 Vector3::NEGATIVE_UNIT_Z( 0, 0, -1 );
|
---|
12 | const Vector3 Vector3::UNIT_SCALE(1, 1, 1);
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.