| 426 | } |
| 427 | |
| 428 | int |
| 429 | TclFeViewer::setViewWindow(float uMin, float uMax, float vMin, float vMax) |
| 430 | { |
| 431 | #ifdef _NOGRAPHICS |
| 432 | // if no graphics .. just return 0 |
| 433 | return 0; |
| 434 | #else |
| 435 | |
| 436 | int ok = theRenderer->setViewWindow(uMin, uMax, vMin, vMax); |
| 437 | if (ok == 0) |
| 438 | vpwindowSet = 1; |
| 439 | |
| 440 | return ok; |
| 441 | |
| 442 | #endif |
| 443 | } |
| 444 | |
| 445 | int |
| 446 | TclFeViewer::setPlaneDist(float anear, float afar) |
no outgoing calls
no test coverage detected