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

Method SetWindowCenter

Rendering/Core/vtkCamera.cxx:1006–1015  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1004
1005//------------------------------------------------------------------------------
1006void vtkCamera::SetWindowCenter(double x, double y)
1007{
1008 if (this->WindowCenter[0] != x || this->WindowCenter[1] != y)
1009 {
1010 this->Modified();
1011 this->ViewingRaysModified();
1012 this->WindowCenter[0] = x;
1013 this->WindowCenter[1] = y;
1014 }
1015}
1016
1017//------------------------------------------------------------------------------
1018void vtkCamera::SetObliqueAngles(double alpha, double beta)

Callers 6

SatelliteStartRenderMethod · 0.80
CopyToMethod · 0.80
RequestDataMethod · 0.80
UpdateTransformsMethod · 0.80
RequestDataMethod · 0.80

Calls 2

ViewingRaysModifiedMethod · 0.95
ModifiedMethod · 0.45

Tested by

no test coverage detected