| 113 | } |
| 114 | |
| 115 | void mitk::ContourElement::SetVertexAt(VertexSizeType pointId, const Point3D &point) |
| 116 | { |
| 117 | if (this->GetSize() > pointId) |
| 118 | { |
| 119 | this->m_Vertices[pointId]->Coordinates = point; |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | void mitk::ContourElement::SetVertexAt(VertexSizeType pointId, const VertexType *vertex) |
| 124 | { |