Prohibit tangency constraint between B-spline curve and its control polygon.
std::set<FeaturePtr> aCoincidences = SketchPlugin_Tools::findCoincidentConstraints(aRefFea);
for (std::set<FeaturePtr>::iterator anIt = aCoincidences.begin();
anIt != aCoincidences.end() && !isValid; ++anIt) {
+ if ((*anIt)->getKind() == SketchPlugin_ConstraintCoincidenceInternal::ID())
+ continue; // skip internal constraints
+
std::set<FeaturePtr> aCoinc;
if (isApplicableCoincidence(*anIt, SketchPlugin_Constraint::ENTITY_A()))
SketchPlugin_Tools::findCoincidences(*anIt, SketchPlugin_Constraint::ENTITY_B(),