------------------------------------------------------------------------------
| 68 | |
| 69 | //------------------------------------------------------------------------------ |
| 70 | void vtkPlane::SetOrigin(double x, double y, double z) |
| 71 | { |
| 72 | if ((this->Origin[0] != x) || (this->Origin[1] != y) || (this->Origin[2] != z)) |
| 73 | { |
| 74 | this->Origin[0] = x; |
| 75 | this->Origin[1] = y; |
| 76 | this->Origin[2] = z; |
| 77 | this->Modified(); |
| 78 | this->InternalUpdates(); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | //------------------------------------------------------------------------------ |
| 83 | void vtkPlane::SetOrigin(const double origin[3]) |
no test coverage detected