MCPcopy Create free account
hub / github.com/Kitware/VTK / ProjectPointsToPlane

Method ProjectPointsToPlane

Interaction/Widgets/vtkSplineWidget.cxx:455–472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453}
454
455void 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
474void vtkSplineWidget::ProjectPointsToObliquePlane()
475{

Callers 4

SetHandlePositionMethod · 0.95
OnMouseMoveMethod · 0.95
PlaceWidgetMethod · 0.95
SetProjectionPositionMethod · 0.95

Calls 2

Tested by

no test coverage detected