source:
downloads/Tools/LightwaveConverter/src/Vector3.cpp
@
6
Last change on this file since 6 was 6, checked in by anonymous, 17 years ago | |
---|---|
File size: 239 bytes |
Rev | Line | |
---|---|---|
[6] | 1 | #include "Vector3.h" |
2 | ||
3 | const Vector3 Vector3::ZERO( 0, 0, 0 ); | |
4 | const Vector3 Vector3::UNIT_X( 1, 0, 0 ); | |
5 | const Vector3 Vector3::UNIT_Y( 0, 1, 0 ); | |
6 | const Vector3 Vector3::UNIT_Z( 0, 0, 1 ); | |
7 | const Vector3 Vector3::UNIT_SCALE(1, 1, 1); |
Note: See TracBrowser
for help on using the repository browser.