Beispiel #1
0
void KeyFace::addCycle(const Cycle & cycle)
{
    cycles_ << cycle;
    foreach(KeyCell * cell, cycle.cells())
        addMeToSpatialStarOf_(cell);
    geometryChanged_();
}
Beispiel #2
0
void KeyFace::clearCycles_()
{
    foreach(Cell * cell, spatialBoundary())
        removeMeFromSpatialStarOf_(cell);

    cycles_.clear();
    geometryChanged_();
}
Beispiel #3
0
void InbetweenEdge::setAfterCycleStartingPoint(double s0)
{
    afterCycle_.setStartingPoint(s0);
    geometryChanged_();
}