Dim ACone As New Solid
ACone = Solid.CreateCone(5, 5, New Point3D(0, 0, 0), New Point3D(0, 0, 50), 20)
DisplayEyeshotBlock.Entities.Add(ACone)
Dim BCone As New Solid
BCone = Solid.CreateCone(5, 5, New Point3D(50, 0, 0), New Point3D(50, 0, 50), 20)
DisplayEyeshotBlock.Entities.Add(BCone)
I want to combine two solids (or more) into one solid in devDept Eyeshot, so that when i apply rotation (translation etc), each will get this transformation. The solids can be widely separated.Just like the two cones(in the code) which i want to combine into one solid. Am unable to do so and thanks in advance.