Aurelon Open API 8.1.1
Loading...
Searching...
No Matches
AOI_Rectangle.cpp
1#include "./AOI_Rectangle.h"
2#include "../GRectangle.h"
3
4using namespace aur;
5using namespace aur::PDF;
6
19{
20 FRectangle localR;
21 RectanglePtr(this)->GetRectangle( localR );
22 r.left = localR.left;
23 r.right = localR.right;
24 r.top = localR.top;
25 r.bottom = localR.bottom;
26}
27
34{
35 // hard cast
36 return (AOI_Mapping&)RectanglePtr(this)->GetMapping();
37}
3x3 matrix
Definition AOI_Types.h:113
void GetRectangle(AOI_Rectangle &) const
AOI_Mapping GetMapping() const
Rectangle.
Definition AOI_Types.h:148