1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/*=========================================================================
Program: Visualization Toolkit
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkOpenVRCamera
* @brief OpenVR camera
*
* vtkOpenVRCamera is a concrete implementation of the abstract class
* vtkCamera. vtkOpenVRCamera interfaces to the OpenVR rendering library.
*/
#ifndef vtkOpenVRCamera_h
#define vtkOpenVRCamera_h
#include "vtkRenderingOpenVRModule.h" // For export macro
#include "vtkOpenGLCamera.h"
#include "vtkNew.h" // ivars
#include "vtkTransform.h" // ivars
class vtkOpenVRRenderer;
class vtkMatrix3x3;
class vtkMatrix4x4;
class VTKRENDERINGOPENVR_EXPORT vtkOpenVRCamera : public vtkOpenGLCamera
{
public:
static vtkOpenVRCamera *New();
vtkTypeMacro(vtkOpenVRCamera, vtkOpenGLCamera);
/**
* Implement base class method.
*/
virtual void Render(vtkRenderer *ren);
virtual void GetKeyMatrices(vtkRenderer *ren, vtkMatrix4x4 *&WCVCMatrix,
vtkMatrix3x3 *&normalMatrix, vtkMatrix4x4 *&VCDCMatrix, vtkMatrix4x4 *&WCDCMatrix);
/**
* Provides a matrix to go from absolute OpenVR tracking coordinates
* to device coordinates. Used for rendering devices.
*/
virtual void GetTrackingToDCMatrix(vtkMatrix4x4 *&TCDCMatrix);
//@{
/**
* Set/Get the translation to map world coordinates into the
* OpenVR physical space (meters, 0,0,0).
*/
vtkSetVector3Macro(Translation,double);
vtkGetVector3Macro(Translation,double);
//@}
protected:
vtkOpenVRCamera();
~vtkOpenVRCamera();
// gets the pose and projections for the left and right eves from
// the openvr library
void GetHMDEyePoses(vtkRenderer *);
void GetHMDEyeProjections(vtkRenderer *);
vtkMatrix4x4 *LeftEyePose;
vtkMatrix4x4 *RightEyePose;
vtkMatrix4x4 *LeftEyeProjection;
vtkMatrix4x4 *RightEyeProjection;
vtkMatrix4x4 *RightWCDCMatrix;
vtkMatrix4x4 *RightWCVCMatrix;
vtkMatrix4x4 *RightVCDCMatrix;
vtkMatrix4x4 *LeftEyeTCDCMatrix;
vtkMatrix4x4 *RightEyeTCDCMatrix;
// used to translate the
// View to the HMD space
double Translation[3];
vtkNew<vtkTransform> PoseTransform;
private:
vtkOpenVRCamera(const vtkOpenVRCamera&); // Not implemented.
void operator=(const vtkOpenVRCamera&); // Not implemented.
};
#endif
|