| 453 | } |
| 454 | |
| 455 | void vtkSplineWidget::ProjectPointsToPlane() |
| 456 | { |
| 457 | if (this->ProjectionNormal == VTK_PROJECTION_OBLIQUE) |
| 458 | { |
| 459 | if (this->PlaneSource != nullptr) |
| 460 | { |
| 461 | this->ProjectPointsToObliquePlane(); |
| 462 | } |
| 463 | else |
| 464 | { |
| 465 | vtkGenericWarningMacro(<< "Set the plane source for oblique projections..."); |
| 466 | } |
| 467 | } |
| 468 | else |
| 469 | { |
| 470 | this->ProjectPointsToOrthoPlane(); |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | void vtkSplineWidget::ProjectPointsToObliquePlane() |
| 475 | { |
no test coverage detected