Home
last modified time | relevance | path

Searched refs:viewUp (Results 1 – 25 of 49) sorted by relevance

12

/dports/math/vtk9/VTK-9.1.0/Web/Python/vtkmodules/web/
H A Dcamera.py138 viewUp = rotate(thetaAxis, theta, (0, 0, 0), phiAxis)
148 "viewUp": viewUp,
239 def __init__(self, dataHandler, viewForward, viewUp, positions): argument
243 self.viewUp = viewUp
244 self.rightDirection = vectProduct(viewForward, viewUp)
294 cameraData["viewUp"] = [self.viewUp[i] for i in range(3)]
303 cameraData["viewUp"] = [self.viewUp[i] for i in range(3)]
313 cameraData["viewUp"] = [self.viewUp[i] for i in range(3)]
357 self.viewUp = viewUp
358 self.rightDirection = vectProduct(viewForward, viewUp)
[all …]
/dports/math/vtk8/VTK-8.2.0/Web/Python/vtkmodules/web/
H A Dcamera.py96 viewUp = rotate(thetaAxis, theta, (0,0,0), phiAxis)
105 'viewUp': viewUp
170 def __init__(self, dataHandler, viewForward, viewUp, positions): argument
174 self.viewUp = viewUp
175 self.rightDirection = vectProduct(viewForward, viewUp)
219 cameraData['viewUp'] = [self.viewUp[i] for i in range(3)]
226 cameraData['viewUp'] = [self.viewUp[i] for i in range(3)]
234 cameraData['viewUp'] = [self.viewUp[i] for i in range(3)]
241 cameraData['viewUp'] = [self.viewUp[i] for i in range(3)]
270 self.viewUp = viewUp
[all …]
/dports/math/vtk9/VTK-9.1.0/Interaction/Widgets/Testing/Python/
H A DTestCameraOrientationWidget.py106 def spin(self, instructions, widgetBack, widgetUp, camPos, focalPoint, viewUp): argument
118 viewUp[i] = cam.GetViewUp()[i]
204 viewUp = [0, 0, 0]
207 instructions[i], widgetBack, widgetUp, camPos, focalPoint, viewUp)
216 viewUp[j], requiredViewUp[i][j], places=4)
/dports/math/vtk8/VTK-8.2.0/Interaction/Widgets/Testing/Cxx/
H A DTestResliceCursorWidget2.cxx222 double viewUp[3][3] = {{0, 0, -1}, {0, 0, 1}, {0, 1, 0}}; in TestResliceCursorWidget2() local
253 viewUp[i][0], viewUp[i][1], viewUp[i][2]); in TestResliceCursorWidget2()
H A DTestResliceCursorWidget3.cxx223 double viewUp[3][3] = {{0, 0, -1}, {0, 0, 1}, {0, 1, 0}}; in TestResliceCursorWidget3() local
253 ren[i]->GetActiveCamera()->SetViewUp(viewUp[i]); in TestResliceCursorWidget3()
/dports/math/vtk9/VTK-9.1.0/Interaction/Widgets/Testing/Cxx/
H A DTestResliceCursorWidget2.cxx203 double viewUp[3][3] = { { 0, 0, -1 }, { 0, 0, 1 }, { 0, 1, 0 } }; in TestResliceCursorWidget2() local
230 ren[i]->GetActiveCamera()->SetViewUp(viewUp[i][0], viewUp[i][1], viewUp[i][2]); in TestResliceCursorWidget2()
H A DTestResliceCursorWidget3.cxx205 double viewUp[3][3] = { { 0, 0, -1 }, { 0, 0, 1 }, { 0, 1, 0 } }; in TestResliceCursorWidget3() local
232 ren[i]->GetActiveCamera()->SetViewUp(viewUp[i]); in TestResliceCursorWidget3()
/dports/math/vtk6/VTK-6.2.0/Rendering/External/
H A DvtkExternalOpenGLRenderer.cxx169 double viewUp[4] = {0.0, 1.0, 0.0, 0.0}, newViewUp[4]; in Render() local
170 matrix->MultiplyPoint(viewUp, newViewUp); in Render()
/dports/math/vtk8/VTK-8.2.0/Interaction/Style/
H A DvtkInteractorStyleImage.cxx605 const double leftToRight[3], const double viewUp[3]) in SetImageOrientation()
611 vtkMath::Cross(leftToRight, viewUp, vector); in SetImageOrientation()
620 camera->SetViewUp(viewUp); in SetImageOrientation()
/dports/math/vtk6/VTK-6.2.0/Rendering/VolumeOpenGL2/
H A DvtkSmartVolumeMapper.cxx572 double viewUp[3]) in CreateCanonicalView()
585 viewDirection, viewUp); in CreateCanonicalView()
595 viewDirection, viewUp); in CreateCanonicalView()
H A DvtkSmartVolumeMapper.h208 double viewUp[3] );
/dports/math/vtk6/VTK-6.2.0/Interaction/Style/
H A DvtkInteractorStyleImage.cxx604 const double leftToRight[3], const double viewUp[3]) in SetImageOrientation()
610 vtkMath::Cross(leftToRight, viewUp, vector); in SetImageOrientation()
619 camera->SetViewUp(viewUp); in SetImageOrientation()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/rendering/
H A DCamera.h276 void SetViewUp(const vtkm::Vec3f_32& viewUp) in SetViewUp() argument
279 this->Camera3D.ViewUp = viewUp; in SetViewUp()
282 void SetViewUp(const vtkm::Vec3f_64& viewUp) { this->SetViewUp(vtkm::Vec3f_32(viewUp)); } in SetViewUp() argument
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/rendering/
H A DCamera.h289 void SetViewUp(const vtkm::Vec<vtkm::Float32, 3>& viewUp) in SetViewUp() argument
292 this->Camera3D.ViewUp = viewUp; in SetViewUp()
295 void SetViewUp(const vtkm::Vec<vtkm::Float64, 3>& viewUp) in SetViewUp() argument
297 this->SetViewUp(vtkm::Vec<vtkm::Float32, 3>(viewUp)); in SetViewUp()
/dports/graphics/f3d/f3d-1.2.1/src/
H A DF3DLoader.cxx559 double* viewUp = cam->GetViewUp(); in LoadFile() local
560 … F3DLog::Print(F3DLog::Severity::Info, "Camera view up is: ", viewUp[0], ", ", viewUp[1], ", ", in LoadFile()
561 viewUp[2], "."); in LoadFile()
/dports/math/vtk9/VTK-9.1.0/Interaction/Widgets/
H A DvtkResliceCursorLineRepresentation.cxx327 double* viewUp = rc->GetViewUp(axis); in RotateAxis() local
338 this->RotateVectorAboutVector(viewUp, aboutAxis, angle, viewUp); in RotateAxis()
H A DvtkResliceCursorRepresentation.cxx274 double* viewUp = this->GetResliceCursor()->GetViewUp(planeOrientation); in ResetCamera() local
286 this->Renderer->GetActiveCamera()->SetViewUp(viewUp); in ResetCamera()
430 double* viewUp = this->GetResliceCursor()->GetViewUp(planeOrientation); in UpdateReslicePlane() local
434 vtkResliceCursorRepresentation::TransformPlane(this->PlaneSource, center, planeNormal, viewUp); in UpdateReslicePlane()
/dports/math/vtk6/VTK-6.2.0/Rendering/VolumeOpenGL/
H A DvtkSmartVolumeMapper.cxx682 double viewUp[3]) in CreateCanonicalView()
695 viewDirection, viewUp); in CreateCanonicalView()
705 viewDirection, viewUp); in CreateCanonicalView()
/dports/math/vtk8/VTK-8.2.0/Rendering/External/
H A DvtkExternalOpenGLRenderer.cxx71 double viewUp[4] = {0.0, 1.0, 0.0, 0.0}, newViewUp[4]; in Render() local
72 matrix->MultiplyPoint(viewUp, newViewUp); in Render()
/dports/math/vtk9/VTK-9.1.0/Rendering/External/
H A DvtkExternalOpenGLRenderer.cxx93 double viewUp[4] = { 0.0, 1.0, 0.0, 0.0 }, newViewUp[4]; in SynchronizeGLCameraMatrices() local
94 matrix->MultiplyPoint(viewUp, newViewUp); in SynchronizeGLCameraMatrices()
/dports/astro/stellarium/stellarium-0.21.3/plugins/Scenery3d/src/
H A DS3DRenderer.hpp338 …void adjustShadowFrustum(const Vec3d &viewPos, const Vec3d &viewDir, const Vec3d &viewUp, const fl…
340 void computeFrustumSplits(const Vec3d& viewPos, const Vec3d& viewDir, const Vec3d& viewUp);
/dports/math/vtk9/VTK-9.1.0/Common/Transforms/
H A DvtkPerspectiveTransform.cxx413 const double position[3], const double focalPoint[3], const double viewUp[3]) in SetupCamera()
431 vtkMath::Cross(viewUp, viewPlaneNormal, viewSideways); in SetupCamera()
/dports/math/vtk6/VTK-6.2.0/Common/Transforms/
H A DvtkPerspectiveTransform.cxx423 const double viewUp[3]) in SetupCamera()
441 vtkMath::Cross(viewUp,viewPlaneNormal,viewSideways); in SetupCamera()
/dports/math/vtk8/VTK-8.2.0/Common/Transforms/
H A DvtkPerspectiveTransform.cxx423 const double viewUp[3]) in SetupCamera()
441 vtkMath::Cross(viewUp,viewPlaneNormal,viewSideways); in SetupCamera()
/dports/math/vtk9/VTK-9.1.0/IO/Import/
H A DvtkGLTFImporter.cxx339 double viewUp[3] = { 0.0, 1.0, 0.0 }; in ApplyTransformToCamera() local
346 t->TransformVector(viewUp, viewUp); in ApplyTransformToCamera()
355 cam->SetViewUp(viewUp); in ApplyTransformToCamera()

12