| 443 | } |
| 444 | |
| 445 | int |
| 446 | TclFeViewer::setPlaneDist(float anear, float afar) |
| 447 | { |
| 448 | #ifdef _NOGRAPHICS |
| 449 | // if no graphics .. just return 0 |
| 450 | return 0; |
| 451 | #else |
| 452 | |
| 453 | int ok = theRenderer->setPlaneDist(anear,afar); |
| 454 | if (ok == 0) |
| 455 | clippingPlaneDistancesSet = 1; |
| 456 | return ok; |
| 457 | |
| 458 | #endif |
| 459 | } |
| 460 | |
| 461 | int |
| 462 | TclFeViewer::setProjectionMode(const char *mode) |
no outgoing calls
no test coverage detected