00001 #ifndef __MATH_GEO_HEIGHT_MAP_HPP__ 00002 #define __MATH_GEO_HEIGHT_MAP_HPP__ 00003 00004 00005 namespace math { 00006 namespace geo { 00007 class vertex; 00008 class tri; 00009 00010 class height_map { 00011 public: 00012 height_map(int,int); 00013 00014 vertex* vertices_; 00015 tri* tris_; 00016 }; 00017 } 00018 } 00019 00020 00021 00022 00023 #endif
1.6.1