| 256 | } |
| 257 | |
| 258 | NDMaterial * OrthotropicMaterial::getCopy(void) |
| 259 | { |
| 260 | OrthotropicMaterial *theCopy = new OrthotropicMaterial(); |
| 261 | theCopy->setTag(getTag()); |
| 262 | theCopy->theIsotropicMaterial = theIsotropicMaterial->getCopy("ThreeDimensional"); |
| 263 | theCopy->epsilon = epsilon; |
| 264 | theCopy->Aepsilon = Aepsilon; |
| 265 | theCopy->Asigma_inv = Asigma_inv; |
| 266 | return theCopy; |
| 267 | } |
| 268 | |
| 269 | NDMaterial* OrthotropicMaterial::getCopy(const char* code) |
| 270 | { |
no test coverage detected