Skip to content
Snippets Groups Projects
Commit 53a1d098 authored by Aron Helser's avatar Aron Helser
Browse files

Fix duplicated doc comments for vtkCamera.

parent 40cfcb13
No related branches found
No related tags found
No related merge requests found
......@@ -436,17 +436,10 @@ public:
* Default is identity.
*/
void SetEyeTransformMatrix(vtkMatrix4x4* matrix);
void SetEyeTransformMatrix(const double elements[16]);
vtkGetObjectMacro(EyeTransformMatrix, vtkMatrix4x4);
///@}
/**
* Set the eye transform matrix.
* This is the transformation matrix for the point between eyes.
* This will be used only for offaxis frustum calculation.
* Default is identity.
*/
void SetEyeTransformMatrix(const double elements[16]);
///@{
/**
* Set/Get model transformation matrix.
......@@ -454,16 +447,10 @@ public:
* such as scale, shear, rotations and translations.
*/
void SetModelTransformMatrix(vtkMatrix4x4* matrix);
void SetModelTransformMatrix(const double elements[16]);
vtkGetObjectMacro(ModelTransformMatrix, vtkMatrix4x4);
///@}
/**
* Set model transformation matrix.
* This matrix could be used for model related transformations
* such as scale, shear, rotations and translations.
*/
void SetModelTransformMatrix(const double elements[16]);
/**
* Return the model view matrix of model view transform.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment