Convert into coordinate system of this AnyRect
| 123 | |
| 124 | /// Convert into coordinate system of this AnyRect |
| 125 | Point<T> ConvertTo(Point<T> const & p) const |
| 126 | { |
| 127 | Point<T> i1(1, 0); |
| 128 | Point<T> j1(0, 1); |
| 129 | return Convert(p - Convert(m_zero, i(), j(), i1, j1), i1, j1, i(), j()); |
| 130 | } |
| 131 | |
| 132 | void ConvertTo(Corners & pts) const |
| 133 | { |