| 48 | } |
| 49 | |
| 50 | void mitk::ContourModel::AddVertex(const Point3D &vertex, TimeStepType timestep) |
| 51 | { |
| 52 | if (!this->IsEmptyTimeStep(timestep)) |
| 53 | { |
| 54 | this->AddVertex(vertex, false, timestep); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | void mitk::ContourModel::AddVertex(const Point3D &vertex, bool isControlPoint, TimeStepType timestep) |
| 59 | { |
no test coverage detected