00001 /*************************************************************************** 00002 vector3.cpp - description 00003 ------------------- 00004 begin : Fri Feb 27 2004 00005 copyright : (C) 2004 by Roman Geus 00006 email : roman.geus@psi.ch 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #include "vector3.h" 00019 00020 namespace mesh { 00021 00022 // initialise static class members 00023 const Vector3 Vector3::ZERO( 0, 0, 0 ); 00024 const Vector3 Vector3::UNIT_X( 1, 0, 0 ); 00025 const Vector3 Vector3::UNIT_Y( 0, 1, 0 ); 00026 const Vector3 Vector3::UNIT_Z( 0, 0, 1 ); 00027 const Vector3 Vector3::UNIT_SCALE(1, 1, 1); 00028 00029 }