Merge remote-tracking branch 'StefanBruens/fix_switch_enum'

This commit is contained in:
Matthias Hochsteger 2022-03-28 18:29:32 +02:00
commit 132261ec4d
2 changed files with 4 additions and 0 deletions

View File

@ -194,6 +194,7 @@ namespace netgen
case ROOT:
return s1->PointInSolid (p, eps);
}
throw Exception("PointInSolid: invalid op");
}
@ -213,6 +214,7 @@ namespace netgen
case ROOT:
return s1->VecInSolid (p, v, eps);
}
throw Exception("VecInSolid: invalid op");
}
// checks if lim s->0 lim t->0 p + t(v1 + s v2) in solid
@ -233,6 +235,7 @@ namespace netgen
case ROOT:
return s1->VecInSolid2 (p, v1, v2, eps);
}
throw Exception("VecInSolid2: invalid op");
}

View File

@ -200,6 +200,7 @@ py::object CastShape(const TopoDS_Shape & s)
case TopAbs_SHAPE:
return py::cast(s);
}
throw Exception("Invalid Shape type");
};