| 2370 | } |
| 2371 | |
| 2372 | int |
| 2373 | Node::setDisplayCrds(const Vector &theCrds) |
| 2374 | { |
| 2375 | if (theCrds.Size() != Crd->Size()) { |
| 2376 | return -1; |
| 2377 | } |
| 2378 | |
| 2379 | if (displayLocation == 0) { |
| 2380 | displayLocation = new Vector(theCrds); |
| 2381 | } else { |
| 2382 | *displayLocation = theCrds; |
| 2383 | } |
| 2384 | return 0; |
| 2385 | } |
| 2386 | |
| 2387 | |
| 2388 | //Add Pointer to NodalThermalAction id applicable------begin-----L.Jiang, [SIF] |
no test coverage detected