Search found 203 matches

by Prashant Kande
Thu May 19, 2022 5:35 am
Forum: Bug Reports
Topic: Import via ModelPath
Replies: 2
Views: 12990

Re: Import via ModelPath

This have been fixed in today's 5314 update: Downloads page
Thank you for reporting
by Prashant Kande
Fri Apr 22, 2022 1:58 am
Forum: Bug Reports
Topic: Import via ModelPath
Replies: 2
Views: 12990

Re: Import via ModelPath

Hello Abhinav.
It has to be a regression bug. We are looking into it
by Prashant Kande
Mon Apr 11, 2022 3:19 am
Forum: Bug Reports
Topic: Split a shell with a shell
Replies: 1
Views: 10717

Re: Split a shell with a shell

Hello Larry The operation is not supposed to work on a par of shells. It should work if the second object is a solid (and the first a shell). If you do not have a solid for the shell, try extending it somehow, for an example using the extrusion from IBRepBuilderEx_DG. IBRepFeaturePrism_DG might work...
by Prashant Kande
Fri Mar 11, 2022 1:27 am
Forum: General Issues
Topic: Project ray on a solid
Replies: 1
Views: 3759

Re: Project ray on a solid

I do not believe there is a ray to solid projection functionality at the moment. I think you need to do a bit of coding and do some automation of low-level functionality, namely find all suitable per face projections, take the nearest one and sort out projection of direction. For a given face access...
by Prashant Kande
Fri Mar 04, 2022 12:20 am
Forum: General Issues
Topic: Finding face by a wire
Replies: 1
Views: 3686

Re: Finding face by a wire

Hello Farhat IUVSurface_DG.GetCurveLocation() should work. Get an edge from the wire, which you are sure must be inside the face. Get its curve with IBRepEdge_DG.GetCurve(). Loop by all faces in the shell. Use IUVSurface_DG.GetCurveLocation() for IBRepFace_DG.Surface. This should identify the face. ...
by Prashant Kande
Fri Feb 18, 2022 2:45 am
Forum: General Issues
Topic: Curve on face intersection segments
Replies: 1
Views: 3708

Re: Curve on face intersection segments

Hello You need to work in the 2d trimmed rectangle of uv parameters domain. Pcurves for each edge define a curved polygon in uv space. ICurve2d_DG IUVSurface_DG.GetCurveUVProjection(ICurve_DG curve) will return 2d representation of your curve in the same uv space. So you problem is reduced to calcul...
by Prashant Kande
Thu Jan 27, 2022 11:54 pm
Forum: General Issues
Topic: Real time equipment animation
Replies: 1
Views: 3719

Re: Real time equipment animation

Hello Guido On Windows DG Kernel would be great for the job. We have done some customizations for a similar project for a Canadian mining company not so long ago. The communication should be implemented on the application side. I do not see any problems there. We would be happy to help with anything...
by Prashant Kande
Wed Dec 08, 2021 12:12 am
Forum: General Issues
Topic: Coinciding surfaces in neighbor faces
Replies: 1
Views: 3743

Re: Coinciding surfaces in neighbor faces

Hello Albert Yes adjacent faces can be either coplanar or have identical surface. It would be the case if you, say, have divided a face. We do not have built in functionality for that. I am not completely sure it is worth it. You can try merging wires for the two faces by removing the shared edge wi...
by Prashant Kande
Mon Oct 25, 2021 5:15 am
Forum: General Issues
Topic: Boolean Operation in 2d
Replies: 1
Views: 4061

Re: Boolean Operation in 2d

Hi Ensar There are no specific 2D Boolean operations, but is is easy to do. You need to linearly extrude all objects along z. For that build a 3D wire first from your objects with z=0 in all input points. And do the extrusion. See the Surfaces sample. After the Boolean operation the result will also...
by Prashant Kande
Fri Sep 03, 2021 12:02 am
Forum: General Issues
Topic: STEP load
Replies: 1
Views: 4134

Re: STEP load

Hello Tom Many samples would work if you just type *.step or *.igs in the open model dialogue. The Data Flow sample (in the Sample Explorer) has all filters added. It is a good point. We plan to add all filters to all samples in the next version. So it is a matter of adding filters to the open file ...