| 282 | } |
| 283 | |
| 284 | void mitk::ExtrudePlanarFigureFilter::PrintSelf(std::ostream &os, itk::Indent indent) const |
| 285 | { |
| 286 | Superclass::PrintSelf(os, indent); |
| 287 | |
| 288 | os << indent << "Length: " << m_Length << std::endl; |
| 289 | os << indent << "Number of Segments: " << m_NumberOfSegments << std::endl; |
| 290 | os << indent << "Twist Angle: " << m_TwistAngle << std::endl; |
| 291 | os << indent << "Bend Angle: " << m_BendAngle << std::endl; |
| 292 | os << indent << "Bend Direction: " << m_BendDirection << std::endl; |
| 293 | os << indent << "Flip Normals: " << m_FlipNormals << std::endl; |
| 294 | } |
| 295 | |
| 296 | void mitk::ExtrudePlanarFigureFilter::SetInput(PlanarFigure *planarFigure) |
| 297 | { |
nothing calls this directly
no test coverage detected