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

Method SetDirectional

Interaction/Widgets/vtkCameraPathRepresentation.cxx:30–45  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

28
29//------------------------------------------------------------------------------
30void vtkCameraPathRepresentation::SetDirectional(bool val)
31{
32 if (this->Directional == val)
33 {
34 return;
35 }
36
37 this->Directional = val;
38 this->Modified();
39
40 for (int i = 0; i < this->NumberOfHandles; ++i)
41 {
42 this->CameraHandles[i]->SetDirectional(this->Directional);
43 this->CameraHandles[i]->Update();
44 }
45}
46
47//------------------------------------------------------------------------------
48void vtkCameraPathRepresentation::BuildRepresentation()

Callers 2

InsertCameraMethod · 0.45

Calls 2

ModifiedMethod · 0.45
UpdateMethod · 0.45

Tested by

no test coverage detected