| 653 | const char* GetEdgeSetArrayName(int index) { return this->GetObjectName(EDGE_SET, index); } |
| 654 | int GetEdgeSetArrayStatus(const char* name) { return this->GetObjectStatus(EDGE_SET, name); } |
| 655 | void SetEdgeSetArrayStatus(const char* name, int flag) |
| 656 | { |
| 657 | this->SetObjectStatus(EDGE_SET, name, flag); |
| 658 | } |
| 659 | |
| 660 | int GetNumberOfFaceSetArrays() { return this->GetNumberOfObjects(FACE_SET); } |
| 661 | const char* GetFaceSetArrayName(int index) { return this->GetObjectName(FACE_SET, index); } |
nothing calls this directly
no test coverage detected