| 478 | } |
| 479 | |
| 480 | void |
| 481 | AnalysisModel::incrDisp(const Vector &disp) |
| 482 | { |
| 483 | DOF_GrpIter &theDOFGrps = this->getDOFs(); |
| 484 | DOF_Group *dofPtr; |
| 485 | |
| 486 | while ((dofPtr = theDOFGrps()) != 0) |
| 487 | dofPtr->incrNodeDisp(disp); |
| 488 | } |
| 489 | |
| 490 | void |
| 491 | AnalysisModel::incrVel(const Vector &vel) |
nothing calls this directly
no test coverage detected