| 82 | } |
| 83 | |
| 84 | void G4VtkCutterPipeline::SetPlane(const G4Plane3D& planeIn) |
| 85 | { |
| 86 | auto normal = planeIn.normal(); |
| 87 | auto point = planeIn.point(); |
| 88 | this->SetPlane(point.x(), point.y(), point.z(), normal.x(), normal.y(), normal.z()); |
| 89 | } |
| 90 | |
| 91 | void G4VtkCutterPipeline::SetPlane(G4double x, G4double y, G4double z, G4double nx, G4double ny, |
| 92 | G4double nz) |
no test coverage detected