Search found 21 matches

by Mike Zubovic
Tue Mar 25, 2025 12:59 am
Forum: DG Kernel discussions
Topic: Enterprise vs Pro OCX naming
Replies: 2
Views: 48808

Re: Enterprise vs Pro OCX naming

Done in update 5567.
Thanks
by Mike Zubovic
Mon Mar 24, 2025 2:24 am
Forum: DG Kernel discussions
Topic: STL File Size
Replies: 1
Views: 18110

Re: STL File Size

Sorry about that. In my experience this is most often caused by post processing of the loaded mesh. Try disabling everything using ISTLDataContext_DG. Search the samples for an example. We will look at it asap. It has to be v 7.3 unfortunately. It should be out around November. We will see if we can...
by Mike Zubovic
Sun Mar 16, 2025 2:01 am
Forum: DG Kernel discussions
Topic: Issues with saving
Replies: 3
Views: 66286

Re: Issues with saving

Ryan, I do not see it happening. There might be something wrong with your setup. Things to try: - Execute "Update Component Registration" in the PC's start menu as admin. Is it still happening? - In debug config of your app enable native code debugging. Debug the app. Have a look at the ou...
by Mike Zubovic
Thu Mar 13, 2025 9:35 pm
Forum: DG Kernel discussions
Topic: Issues with saving
Replies: 3
Views: 66286

Re: Issues with saving

Hello Ryan
We are looking into this.
Thank you for reporting
by Mike Zubovic
Mon Mar 10, 2025 2:16 am
Forum: DG Kernel discussions
Topic: Using IKinematic_DG & ICutEffect_DG
Replies: 2
Views: 62354

Re: Using IKinematic_DG & ICutEffect_DG

Movement relative to another object is an area we are also keen to work on, but there have always been higher priorities.
by Mike Zubovic
Mon Mar 10, 2025 2:08 am
Forum: DG Kernel discussions
Topic: Using IKinematic_DG & ICutEffect_DG
Replies: 2
Views: 62354

Re: Using IKinematic_DG & ICutEffect_DG

We have expanded a bit the topics. The functionality is related to CAM, which means motion. It is a vast area and in general case there are many unsolved problems. The implemented case assumes that the moving object is an SOR geometry (Cylinder or cone with either flat or ball nose) which moves para...
by Mike Zubovic
Thu Mar 06, 2025 2:48 am
Forum: DG Kernel discussions
Topic: Lofting a surface from ICircle_DG
Replies: 5
Views: 85666

Re: Lofting a surface from ICircle_DG

"And curious if I can do this without having to add something to the model, like do it as a standalone and then just add the resulting surface?" Yes. It is what the sample does: Dim shape As IBRepShape_DG = iThruSections.Build(solid) ' Add shape to the displayed model m_iModel.AddBRepShape...
by Mike Zubovic
Thu Mar 06, 2025 2:46 am
Forum: DG Kernel discussions
Topic: Lofting a surface from ICircle_DG
Replies: 5
Views: 85666

Re: Lofting a surface from ICircle_DG

"I couldn't seem to get it to work without using entity = AddNewBRepShape(eShTypeFaceDG) or by initializing the variable as a Face or even as a Shape with ObjectGenerator..." Sorry, Adam, your sequence does not make sense to me. I am sure you got it working. I do not believe it worth analy...
by Mike Zubovic
Thu Mar 06, 2025 1:08 am
Forum: DG Kernel discussions
Topic: Lofting a surface from ICircle_DG
Replies: 5
Views: 85666

Re: Lofting a surface from ICircle_DG

The first problem I see is the 'Below does not seem to actually be adding the circle, GetEdgeCount = 0 and GetVertexCount = 0 Call wirCircle1.AddEdge(crvCircle1) IBRepWire_DG.AddEdge(IBRepEdge_DG edge) expects an edge. You are calling with crvCircle1, which is an entity. VB must be trying to query I...
by Mike Zubovic
Thu Mar 06, 2025 12:57 am
Forum: DG Kernel discussions
Topic: Lofting a surface from ICircle_DG
Replies: 5
Views: 85666

Re: Lofting a surface from ICircle_DG

The first observation: In the installed Surfaces VB .NET sample DGKernel_7_2\Samples\NET\VB\Modeling\Surfaces\SurfacesForm.vb the CreateSurface() does exactly that. It builds a pipe out of circles using IWireArrayToSurfaceBuilder_DG with different options. The CreateWireCircle() builds a wire out of...