Go to the documentation of this file.00001 #include "FaceterPointData.hpp"
00002 #include "FaceterFacetData.hpp"
00003 #include "ImprintPointData.hpp"
00004 #include "ImprintLineSegment.hpp"
00005
00006 const int NODE_ALLOC_SIZE = 1024;
00007 const int TRI_ALLOC_SIZE = 4*NODE_ALLOC_SIZE;
00008
00009 MemoryManager FaceterFacetData::memoryManager("FaceterFacetData", sizeof(FaceterFacetData),
00010 TRI_ALLOC_SIZE,
00011 STATIC_MEMORY_MANAGER);
00012 MemoryManager FaceterPointData::memoryManager("FaceterPointData", sizeof(FaceterPointData),
00013 NODE_ALLOC_SIZE,
00014 STATIC_MEMORY_MANAGER);
00015 MemoryManager ImprintPointData::memoryManager("ImprintPointData", sizeof(ImprintPointData),
00016 NODE_ALLOC_SIZE,
00017 STATIC_MEMORY_MANAGER);
00018 MemoryManager ImprintLineSegment::memoryManager("ImprintLineSegment", sizeof(ImprintLineSegment),
00019 NODE_ALLOC_SIZE,
00020 STATIC_MEMORY_MANAGER);
00021