| 72 | } |
| 73 | |
| 74 | void mitk::ContourModel::AddVertexAtFront(const Point3D &vertex, TimeStepType timestep) |
| 75 | { |
| 76 | if (!this->IsEmptyTimeStep(timestep)) |
| 77 | { |
| 78 | this->AddVertexAtFront(vertex, false, timestep); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | void mitk::ContourModel::AddVertexAtFront(const Point3D &vertex, bool isControlPoint, TimeStepType timestep) |
| 83 | { |
no test coverage detected