| 387 | } |
| 388 | |
| 389 | int |
| 390 | G3_addUniaxialMaterial(G3_Runtime *rt, UniaxialMaterial *mat) { |
| 391 | BasicModelBuilder* builder = G3_getSafeBuilder(rt); |
| 392 | assert(builder != nullptr); |
| 393 | assert(mat != nullptr); |
| 394 | |
| 395 | return builder->addTaggedObject<UniaxialMaterial>(*mat); |
| 396 | } |
| 397 | |
| 398 | NDMaterial * |
| 399 | G3_GetNDMaterial(G3_Runtime* rt, int matTag) |
nothing calls this directly
no test coverage detected