Constructor
| 36 | |
| 37 | // Constructor |
| 38 | HeightField::HeightField(MemoryAllocator& allocator, HalfEdgeStructure& triangleHalfEdgeStructure) |
| 39 | : mAllocator(allocator), mHeightFieldData(allocator), |
| 40 | mTriangleHalfEdgeStructure(triangleHalfEdgeStructure) { |
| 41 | |
| 42 | } |
| 43 | |
| 44 | // Initialize the height-field |
| 45 | bool HeightField::init(int nbGridColumns, int nbGridRows, |
nothing calls this directly
no outgoing calls
no test coverage detected