| 564 | } |
| 565 | |
| 566 | PxHeightField* GuMeshFactory::createHeightField(void* heightFieldMeshData) |
| 567 | { |
| 568 | HeightField* np; |
| 569 | PX_NEW_SERIALIZED(np, HeightField)(*this, *reinterpret_cast<Gu::HeightFieldData*>(heightFieldMeshData)); |
| 570 | if(np) |
| 571 | addHeightField(np); |
| 572 | |
| 573 | return np; |
| 574 | } |
| 575 | |
| 576 | PxHeightField* GuMeshFactory::createHeightField(PxInputStream& stream) |
| 577 | { |
nothing calls this directly
no test coverage detected