| 267 | } |
| 268 | |
| 269 | int mitk::Material::GetVtkRepresentation() const |
| 270 | { |
| 271 | switch (m_Representation) |
| 272 | { |
| 273 | case (Points): |
| 274 | return VTK_POINTS; |
| 275 | case (Wireframe): |
| 276 | return VTK_WIREFRAME; |
| 277 | case (Surface): |
| 278 | return VTK_SURFACE; |
| 279 | } |
| 280 | return VTK_SURFACE; |
| 281 | } |
| 282 | |
| 283 | float mitk::Material::GetLineWidth() const |
| 284 | { |
no outgoing calls