Go to the documentation of this file.00001 #ifndef OPENTISSUE_COLLISION_AABB_TREE_AABB_TREE_TRIANGLE_H
00002 #define OPENTISSUE_COLLISION_AABB_TREE_AABB_TREE_TRIANGLE_H
00003
00004
00005
00006
00007
00008
00009
00010 #include <OpenTissue/configuration.h>
00011
00012 namespace OpenTissue
00013 {
00014 namespace aabb_tree
00015 {
00016
00017 template<typename vertex_data_type>
00018 class TriangleWrapper
00019 {
00020 public:
00021
00022 vertex_data_type * m_p0;
00023 vertex_data_type * m_p1;
00024 vertex_data_type * m_p2;
00025
00026 };
00027
00028 }
00029 }
00030
00031
00032 #endif