|
Revision 1040, 1.1 KB
(checked in by tautges, 2 years ago)
|
|
Version 10.2 of cgm.
|
| Line | |
|---|
| 1 | #include "FaceterPointData.hpp" |
|---|
| 2 | #include "FaceterFacetData.hpp" |
|---|
| 3 | #include "ImprintPointData.hpp" |
|---|
| 4 | #include "ImprintLineSegment.hpp" |
|---|
| 5 | |
|---|
| 6 | const int NODE_ALLOC_SIZE = 1024; |
|---|
| 7 | const int TRI_ALLOC_SIZE = 4*NODE_ALLOC_SIZE; |
|---|
| 8 | |
|---|
| 9 | MemoryManager FaceterFacetData::memoryManager("FaceterFacetData", sizeof(FaceterFacetData), |
|---|
| 10 | TRI_ALLOC_SIZE, |
|---|
| 11 | STATIC_MEMORY_MANAGER); |
|---|
| 12 | MemoryManager FaceterPointData::memoryManager("FaceterPointData", sizeof(FaceterPointData), |
|---|
| 13 | NODE_ALLOC_SIZE, |
|---|
| 14 | STATIC_MEMORY_MANAGER); |
|---|
| 15 | MemoryManager ImprintPointData::memoryManager("ImprintPointData", sizeof(ImprintPointData), |
|---|
| 16 | NODE_ALLOC_SIZE, |
|---|
| 17 | STATIC_MEMORY_MANAGER); |
|---|
| 18 | MemoryManager ImprintLineSegment::memoryManager("ImprintLineSegment", sizeof(ImprintLineSegment), |
|---|
| 19 | NODE_ALLOC_SIZE, |
|---|
| 20 | STATIC_MEMORY_MANAGER); |
|---|