Skip to content

Commit 426f125

Browse files
authored
Support degenerate tori with negative major radius
This method already supported a degenerate torus with major radius > 0, with a cross-section that includes more than 1/2 of a circle, truncated by a chord across that circle. This should now support a degenerate torus with major radius < 0, with a cross-section that includes less than 1/2 of a circle, also truncated by a chord across that circle.
1 parent 7cfebdb commit 426f125

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

iGeom/iGeom.cpp

+17-10
Original file line numberDiff line numberDiff line change
@@ -273,16 +273,23 @@ void iGeom_createTorus(iGeom_Instance instance,
273273
STRAIGHT_CURVE_TYPE, v1, v5);
274274
profile_edges.insert(curve);
275275

276-
//the first arc
277-
curve = GeometryModifyTool::instance()->make_RefEdge(ARC_CURVE_TYPE, v1,
278-
v3, &v2_pos);
279-
profile_edges.insert(curve);
280-
281-
//the second arc
282-
curve = GeometryModifyTool::instance()->make_RefEdge(ARC_CURVE_TYPE, v3,
283-
v5, &v4_pos);
284-
profile_edges.insert(curve);
285-
276+
if (major_radius > 0) {
277+
//the first arc
278+
curve = GeometryModifyTool::instance()->make_RefEdge(ARC_CURVE_TYPE, v1,
279+
v3, &v2_pos);
280+
profile_edges.insert(curve);
281+
282+
//the second arc
283+
curve = GeometryModifyTool::instance()->make_RefEdge(ARC_CURVE_TYPE, v3,
284+
v5, &v4_pos);
285+
profile_edges.insert(curve);
286+
} else {
287+
//only one arc
288+
curve = GeometryModifyTool::instance()->make_RefEdge(ARC_CURVE_TYPE, v1,
289+
v5, &v3_pos);
290+
profile_edges.insert(curve);
291+
}
292+
286293
// make surf from the curves
287294
// This fails in Cubit
288295
RefFace *surf = GeometryModifyTool::instance()->make_RefFace(

0 commit comments

Comments
 (0)