| 2268 | } |
| 2269 | |
| 2270 | void |
| 2271 | Node::setCrds(double Crd1) |
| 2272 | { |
| 2273 | if (Crd != 0 && Crd->Size() >= 1) |
| 2274 | (*Crd)(0) = Crd1; |
| 2275 | |
| 2276 | // Need to "setDomain" to make the change take effect. |
| 2277 | Domain *theDomain = this->getDomain(); |
| 2278 | ElementIter &theElements = theDomain->getElements(); |
| 2279 | Element *theElement; |
| 2280 | while ((theElement = theElements()) != 0) { |
| 2281 | theElement->setDomain(theDomain); |
| 2282 | } |
| 2283 | } |
| 2284 | |
| 2285 | void |
| 2286 | Node::setCrds(double Crd1, double Crd2) |
nothing calls this directly
no test coverage detected