Fillet
// Create a box
sd3dSolid box = fDrawCtrl1.Document.AddSolidBox(new Point3D(0, 0, 0), 10, 10, 10);
List<int> index = new List<int>();
index.Add(4); index.Add(5); index.Add(6); index.Add(7);
// Apply Fillet on edge 4,5,6 and 7.
box.Fillet(index, 1);