I am most likely doing something wrong here. I am generating some circles and trying to loft a surface from one circle to the other into a tube like geometry. When I call Build from IWireArrayToSurfaceBuilder_DG, the entire IDE or program crashes (maybe this needs better error handling).
I think the issue is converting the Icircle_DG (which is GetGeometryType says is Brep) to a IBrepWire_DG.
Can you tell me what I might be doing wrong? 32-bit VB6 code below (note, kcad control is called MyKernelCAD):
Code: Select all
'Kernel CAD session
Public MyModel3D As IModel_DG
Public MyObjGen3D As IObjectGenerator_DG
Public MyView3D As IView_DG
Private Sub CreateOpenCylinder()
' high-level object creation
Set MyModel3D = MyKernelCAD.GetModel()
Set MyView3D = MyKernelCAD.GetView()
Set MyObjGen3D = MyModel3D
'Declarations for final entity and shape builder
Dim cylinder As IEntity_DG
Dim Builder As IStdShape_DG
Set Builder = MyObjGen3D.Create("IStdShape_DG")
'Declarations for circles
Dim crvCircle1 As IEntity_DG, crvCircle2 As IEntity_DG
Dim wirCircle1 As IBRepWire_DG, wirCircle2 As IBRepWire_DG
'Create circular curves
Set crvCircle1 = Builder.Circle(8)
Set crvCircle2 = Builder.Circle(8)
Call crvCircle2.GetLocation.Translate1(0, 0, 10)
'Display circles for debugging
Call MyModel3D.AddEntity(crvCircle1)
Call MyModel3D.AddEntity(crvCircle2)
'Cast circles as wires by adding the curve as a Brep edge
Set wirCircle1 = MyObjGen3D.Create("IBRepWire_DG")
Set wirCircle2 = MyObjGen3D.Create("IBRepWire_DG")
'Below does not seem to actually be adding the circle, GetEdgeCount = 0 and GetVertexCount = 0
Call wirCircle1.AddEdge(crvCircle1)
Call wirCircle2.AddEdge(crvCircle2)
' Add shape to the displayed model
Dim SurfaceBuilder As IWireArrayToSurfaceBuilder_DG
Set SurfaceBuilder = MyObjGen3D.Create("IWireArrayToSurfaceBuilder_DG")
Call SurfaceBuilder.Init(False, 0.001)
Call SurfaceBuilder.AddWire(wirCircle1)
Call SurfaceBuilder.AddWire(wirCircle2)
'This causes DGKernel to crash
'Dim MyLoftedSurface As IBRepShape_DG
'Set MyLoftedSurface = SurfaceBuilder.Build(False)
'Set cylinder = MyLoftedSurface
'Call MyModel3D.AddEntity(cylinder)
' Update the view
Call MyView3D.Update
End Sub
Also please note, there is a total IDE crash if you try to access a IBRepWire_DG . GetEdge( index) and index is out of bounds. I think maybe some better error handling needed here too.
Thanks for all your support and assistance,
Adam