Search found 4 matches

by motif
Mon May 18, 2020 4:33 am
Forum: General Issues
Topic: Converting bspline surface object into an entity
Replies: 3
Views: 5802

Re: Converting bspline surface object into an entity

Hi Peter One way (C#): IEntity_DG entity = model.AddNewBRepShape(ShapeType_DG.eShTypeFaceDG); IBRepGeometry_DG geometry = entity.GetGeometry() as IBRepGeometry_DG; IBRepFace_DG face = geometry.GetShape() as IBRepFace_DG; IUVSurface_DG uvSurface = bsplineSurface as IUVSurface_DG; // Your surface face...
by motif
Thu Mar 12, 2020 9:50 pm
Forum: General Issues
Topic: Vertex modification problem
Replies: 2
Views: 5861

Re: Vertex modification problem

Thanks a lot, Prashant
by motif
Wed Mar 11, 2020 3:58 am
Forum: General Issues
Topic: Vertex modification problem
Replies: 2
Views: 5861

Vertex modification problem

Hello I am trying modification of a shape consisting of planar faces. I have an issue there. I do not see any exceptions. The change just does not take effect. I have reduced my code to this: BRepBuilder_DG myBuilder; … IPlane_DG pln = (IPlane_DG)m_gen.Create("Plane_DG"); IBRepFace_DG f = myBuilder....
by motif
Fri Jul 12, 2019 3:57 am
Forum: General Issues
Topic: Intersection of 3d surves
Replies: 1
Views: 4193

Intersection of 3d surves

Hi everyone,
I look around for possibilities to find the Intersection points of two 3d curves. Anyone can summarize the solution for finding Intersection points of two 3d curves?

Thanks in advance.