| 379 | |
| 380 | |
| 381 | int |
| 382 | TclFeViewer::setVRP(float xLoc, float yLoc , float zLoc) |
| 383 | { |
| 384 | #ifdef _NOGRAPHICS |
| 385 | // if no graphics .. just return 0 |
| 386 | return 0; |
| 387 | #else |
| 388 | |
| 389 | int ok = theRenderer->setVRP(xLoc, yLoc, zLoc); |
| 390 | if (ok == 0) |
| 391 | vrpSet = 1; |
| 392 | |
| 393 | return ok; |
| 394 | #endif |
| 395 | } |
| 396 | |
| 397 | int |
| 398 | TclFeViewer::setVPN(float xdirn, float ydirn, float zdirn) |
no outgoing calls
no test coverage detected