| 504 | } |
| 505 | |
| 506 | int |
| 507 | TclFeViewer::displayModel(int eleFlag, int nodeFlag, float displayFact, int lineWidth) |
| 508 | { |
| 509 | #ifdef _NOGRAPHICS |
| 510 | // if no graphics .. just return 0 |
| 511 | return 0; |
| 512 | #else |
| 513 | // methods invoked on the FE_Viewer |
| 514 | theEleMode = eleFlag; |
| 515 | theNodeMode = nodeFlag; |
| 516 | theDisplayFact = displayFact; |
| 517 | theRenderer->setLineWidth(lineWidth); |
| 518 | return this->record(0, 0.0); |
| 519 | #endif |
| 520 | } |
| 521 | |
| 522 | int |
| 523 | TclFeViewer::clearImage(void) |
no test coverage detected