| 253 | } |
| 254 | |
| 255 | int mitk::Material::GetVtkInterpolation() const |
| 256 | { |
| 257 | switch (m_Interpolation) |
| 258 | { |
| 259 | case (Flat): |
| 260 | return VTK_FLAT; |
| 261 | case (Gouraud): |
| 262 | return VTK_GOURAUD; |
| 263 | case (Phong): |
| 264 | return VTK_PHONG; |
| 265 | } |
| 266 | return VTK_GOURAUD; |
| 267 | } |
| 268 | |
| 269 | int mitk::Material::GetVtkRepresentation() const |
| 270 | { |
no outgoing calls