| 594 | } |
| 595 | |
| 596 | F32 TerrainBlock::getHeight( const Point2I &pos ) |
| 597 | { |
| 598 | U16 ht = mFile->getHeight( pos.x, pos.y ); |
| 599 | return fixedToFloat( ht ); |
| 600 | } |
| 601 | |
| 602 | void TerrainBlock::updateGridMaterials( const Point2I &minPt, const Point2I &maxPt ) |
| 603 | { |
no test coverage detected