Search found 203 matches

by Prashant Kande
Sun Apr 07, 2019 11:41 pm
Forum: General Issues
Topic: Object dimensions
Replies: 1
Views: 4455

Re: Object dimensions

Hi Frank Yes there is a bunch of options. See measurements in context menu. Point measurement will give you coordinates of a point. To estimate dimensions I often press 'm' key (with focus on the DGK window) and click two points in empty area near the object. Location of the object can be obtained f...
by Prashant Kande
Fri Mar 29, 2019 2:46 am
Forum: General Issues
Topic: Accessing mesh
Replies: 1
Views: 5050

Re: Accessing mesh

Hi Marco Not directly. Parametric objects do not keep mesh. Rendering data is stored in the video card memory only. This is one way to get mesh: IEntity_DG iEnt = ...; IEntity_DG iEntMesh = iEnt.Clone(); IGeometry_DG iGeom = iEntMesh.SetGeometryType("Mesh"); IMesh iMesh = iGeom as IMesh; You could a...
by Prashant Kande
Tue Mar 26, 2019 2:24 am
Forum: General Issues
Topic: Mearusing distance objects
Replies: 1
Views: 4420

Re: Mearusing distance objects

Hi Rick No, points can be located on different objects. I assume you are talking about persistent measurements (set in context menu, for other readers)? I did not see the problem. Direction of lines is modified OK if you click at an end near the selection points. More details or may be a model would...
by Prashant Kande
Tue Mar 19, 2019 8:18 pm
Forum: General Issues
Topic: Third party source code
Replies: 2
Views: 5770

Re: Third party source code

Hello Dave
Yes we do, a bit later, but I do not believe there were any changes in OCCT code since 5.2.
We plan updating OCCT in v6.1
Regards
by Prashant Kande
Tue Mar 19, 2019 8:10 pm
Forum: Bug Reports
Topic: Deleting a measurement
Replies: 1
Views: 5040

Re: Deleting a measurement

Hi Tony
This should be working now. Please get the latest
Regards
by Prashant Kande
Tue Mar 19, 2019 4:26 am
Forum: Bug Reports
Topic: Problem moving an object
Replies: 2
Views: 6300

Re: Problem moving an object

Hi Dejan
It should be working in update 4883 or later
Cheers
by Prashant Kande
Mon Mar 18, 2019 4:14 am
Forum: Bug Reports
Topic: Problem moving an object
Replies: 2
Views: 6300

Re: Problem moving an object

Thank you for reporting, Dejan
We are working on it...
by Prashant Kande
Wed Mar 13, 2019 12:12 am
Forum: Bug Reports
Topic: New ray hides objects
Replies: 1
Views: 4915

Re: New ray hides objects

Hi Vince
Thanks for reporting
We have fixed this. It will be out in the next update
Regards
by Prashant Kande
Sun Mar 10, 2019 10:54 pm
Forum: General Issues
Topic: Normals at an edge
Replies: 1
Views: 4530

Re: Normals at an edge

Hi Kersten
http://www.dynoinsight.com/Help/V6_0/In ... #GetEdgeUV

There is also same thing for vertices

To convert ratio to params use
http://www.dynoinsight.com/Help/V6_0/In ... ve_DG.aspx (get from edge)

Cheers
by Prashant Kande
Fri Mar 01, 2019 2:22 am
Forum: General Issues
Topic: GetParent
Replies: 2
Views: 5562

Re: GetParent

This is how we test BuildChildToParentMap(): void TestBuildChildToParentMap() { .... IModel_DGPtr iModel_DG; model.QueryInterface(__uuidof(IModel_DG), (void**)&iModel_DG); IMapUnkn_DGPtr map; iModel_DG->BuildChildToParentMap(&map); // Get flat array of all independently of child/parent IEntityArray_...