------------------------------------------------------------------------------
| 1477 | |
| 1478 | //------------------------------------------------------------------------------ |
| 1479 | void vtkPDFContextDevice2D::SetMatrix(vtkMatrix3x3* mat3) |
| 1480 | { |
| 1481 | double mat4[16]; |
| 1482 | vtkPDFContextDevice2D::Matrix3ToMatrix4(mat3, mat4); |
| 1483 | this->Matrix->SetMatrix(mat4); |
| 1484 | this->ApplyTransform(); |
| 1485 | } |
| 1486 | |
| 1487 | //------------------------------------------------------------------------------ |
| 1488 | void vtkPDFContextDevice2D::GetMatrix(vtkMatrix3x3* mat3) |
nothing calls this directly
no test coverage detected