| 64 | } |
| 65 | |
| 66 | void Plane::GetExtent(double &x, double &y) const |
| 67 | { |
| 68 | x = m_PlaneSource->GetPoint1()[0] - m_PlaneSource->GetOrigin()[0]; |
| 69 | y = m_PlaneSource->GetPoint2()[1] - m_PlaneSource->GetOrigin()[1]; |
| 70 | } |
| 71 | |
| 72 | void Plane::SetResolution(const int xR, const int yR) |
| 73 | { |
no test coverage detected