I have the scene shown below. It’s a holder for a cookie cutter. How do I add a half circle 3mm thick?
var scene = new Scene();
var box = new Box();
var tr = scene.RootNode.CreateChildNode(box).Transform;
tr.Scale = new Vector3(60, 3.0, 2.9);
tr.Translation = new Vector3(0.0, -27.0, -3.1);
tr = scene.RootNode.CreateChildNode(box).Transform;
tr.Scale = new Vector3(60, 3.0, 2.9);
tr.Translation = new Vector3(0.0, 27.0, -3.1);
tr = scene.RootNode.CreateChildNode(box).Transform;
tr.Scale = new Vector3(60, 3.0, 9.2);
tr.Translation = new Vector3(0.0, -29.6, 0.0);
tr = scene.RootNode.CreateChildNode(box).Transform;
tr.Scale = new Vector3(60, 3.0, 9.2);
tr.Translation = new Vector3(0.0, 29.6, 0.0);
tr = scene.RootNode.CreateChildNode(box).Transform;
tr.Scale = new Vector3(60, 56.2, 3.0);
tr.Translation = new Vector3(0.0, 0, 3.2);