Aspose::Pdf::Matrix::Transform método
Contenido
[
Ocultar
]Matrix::Transform(const System::SharedPtr<Aspose::Pdf::Rectangle>&) method
Transforma el rectángulo. Si el ángulo no es 90 * N grados, se devuelve el rectángulo delimitador.
System::SharedPtr<Aspose::Pdf::Rectangle> Aspose::Pdf::Matrix::Transform(const System::SharedPtr<Aspose::Pdf::Rectangle> &rect)
| Parámetro | Tipo | Descripción |
|---|---|---|
| rect | const System::SharedPtr<Aspose::Pdf::Rectangle>& | Rectangle para ser transformado. |
ReturnValue
Rectángulo transformado.
Ver también
- Typedef SharedPtr
- Class Rectangle
- Class Matrix
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
Matrix::Transform(const System::SharedPtr<Point>&) method
Transforma el punto usando esta matriz.
System::SharedPtr<Point> Aspose::Pdf::Matrix::Transform(const System::SharedPtr<Point> &p)
| Parámetro | Tipo | Descripción |
|---|---|---|
| p | const System::SharedPtr<Point>& | Point que será transformado. |
ReturnValue
Resultado de la transformación.
Ver también
- Typedef SharedPtr
- Class Point
- Class Matrix
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
Matrix::Transform(double, double, double&, double&) method
Transforma las coordenadas usando esta matriz.
void Aspose::Pdf::Matrix::Transform(double x, double y, double &x1, double &y1)
| Parámetro | Tipo | Descripción |
|---|---|---|
| x | double | Coordenada X. |
| y | double | Coordenada Y. |
| x1 | double& | Coordenada X transformada. |
| y1 | double& | Coordenada Y transformada. |
Ver también
- Class Matrix
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++