Description: Set/Get the resolution (number of subdivisions) of the plane.
| 1513 | // Description: |
| 1514 | // Set/Get the resolution (number of subdivisions) of the plane. |
| 1515 | void vtkPlaneWidget::SetResolution(int r) |
| 1516 | { |
| 1517 | this->PlaneSource->SetXResolution(r); |
| 1518 | this->PlaneSource->SetYResolution(r); |
| 1519 | } |
| 1520 | |
| 1521 | int vtkPlaneWidget::GetResolution() |
| 1522 | { |
no outgoing calls