------------------------------------------------------------------------------
| 128 | |
| 129 | //------------------------------------------------------------------------------ |
| 130 | void vtkPlane::DeepCopy(vtkPlane* plane) |
| 131 | { |
| 132 | this->SetNormal(plane->GetNormal()); |
| 133 | this->SetOrigin(plane->GetOrigin()); |
| 134 | this->SetAxisAligned(plane->GetAxisAligned()); |
| 135 | this->SetOffset(plane->GetOffset()); |
| 136 | } |
| 137 | |
| 138 | //------------------------------------------------------------------------------ |
| 139 | double vtkPlane::DistanceToPlane(double x[3]) |