| 613 | const char* GetEdgeMapArrayName(int index) { return this->GetObjectName(EDGE_MAP, index); } |
| 614 | int GetEdgeMapArrayStatus(const char* name) { return this->GetObjectStatus(EDGE_MAP, name); } |
| 615 | void SetEdgeMapArrayStatus(const char* name, int flag) |
| 616 | { |
| 617 | this->SetObjectStatus(EDGE_MAP, name, flag); |
| 618 | } |
| 619 | |
| 620 | int GetNumberOfFaceMapArrays() { return this->GetNumberOfObjects(FACE_MAP); } |
| 621 | const char* GetFaceMapArrayName(int index) { return this->GetObjectName(FACE_MAP, index); } |
nothing calls this directly
no test coverage detected