00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef MGCTETRAHEDRON_H
00014 #define MGCTETRAHEDRON_H
00015
00016 #include "MgcPlane.h"
00017
00018 namespace Mgc {
00019
00020 class MAGICFM Tetrahedron
00021 {
00022 public:
00023 Tetrahedron ();
00024 Tetrahedron (const Vector3& rkV0, const Vector3& rkV1,
00025 const Vector3& rkV2, const Vector3& rkV3);
00026 Tetrahedron (const Vector3 akV[4]);
00027
00028 Vector3& operator[] (int i);
00029 const Vector3& operator[] (int i) const;
00030
00031
00032
00033 void GetPlanes (Plane akPlane[4]) const;
00034
00035 protected:
00036 Vector3 m_akVertex[4];
00037 };
00038
00039 #include "MgcTetrahedron.inl"
00040
00041 }
00042
00043 #endif
00044
00045
00046