| 70 | } |
| 71 | |
| 72 | NDMaterial *OPS_getNDMaterial(int tag) |
| 73 | { |
| 74 | TaggedObject *theResult = theNDMaterialObjects.getComponentPtr(tag); |
| 75 | if(theResult == 0) { |
| 76 | opserr << "NDMaterial no found with tag: " << tag << "\n"; |
| 77 | return 0; |
| 78 | } |
| 79 | NDMaterial *theMat = (NDMaterial *)theResult; |
| 80 | |
| 81 | return theMat; |
| 82 | } |
| 83 | |
| 84 | void OPS_clearAllNDMaterial(void) |
| 85 | { |
no test coverage detected