| 70 | } |
| 71 | |
| 72 | void Plane::SetResolution(const int xR, const int yR) |
| 73 | { |
| 74 | m_PlaneSource->SetResolution(xR, yR); |
| 75 | m_PlaneSource->Update(); |
| 76 | |
| 77 | m_Plane->DeepCopy(m_PlaneSource->GetOutput()); |
| 78 | m_Plane->GetPointData()->SetVectors(m_PlaneNormal); |
| 79 | |
| 80 | this->Modified(); |
| 81 | } |
| 82 | |
| 83 | void Plane::GetResolution(int &xR, int &yR) const { m_PlaneSource->GetResolution(xR, yR); } |
| 84 | bool Plane::IsInside(const Point3D & /*worldPoint*/) const |
no test coverage detected