Search found 397 matches

by nickz
Sun Dec 15, 2013 10:34 am
Forum: General Issues
Topic: Loading multiple stl
Replies: 3
Views: 8571

Re: Loading multiple stl

We have fixed this one in update 3752: http://www.dynoinsight.com/ProDown.htm
BTW this is a different issue. It should be another thread on bugs forum
Thanks
Nick
by nickz
Fri Dec 13, 2013 6:32 am
Forum: Bug Reports
Topic: memory release
Replies: 12
Views: 23877

Re: memory release

Sorry about the 20mb :) . All the loaded dlls have to be located somewhere. There is also some structures allocated in each to keep things running. Something can be optimised for sure, but we need to be sure it is a good way to spend our time
Regards
Nick
by nickz
Fri Dec 13, 2013 6:24 am
Forum: Bug Reports
Topic: Transparent Objects
Replies: 5
Views: 12051

Fixed

We have posted the 4.3.3751 update where this issue have been fixed
by nickz
Fri Dec 13, 2013 6:17 am
Forum: General Issues
Topic: Event for model change
Replies: 3
Views: 8507

Re: Event for model change

We will keep it in mind for v4.4, or most likely for v5.0. You are welcome to order it as a quick custom feature. Sorry
by nickz
Fri Dec 13, 2013 6:09 am
Forum: General Issues
Topic: Extract or isolate part of a surface
Replies: 4
Views: 10547

Re: Extract or isolate part of a surface

We have posted the 4.3.3751 update where IMeshEx has two new methods: Extract() and Merge(). Extract() compiles all simplexes touching a sphere or a box to another mesh. Merge() adds all simplexes from one mesh to another. The Cloud sample demonstrates usage of Extract. There is a new form opened on...
by nickz
Fri Dec 13, 2013 6:06 am
Forum: Bug Reports
Topic: Unite meshes
Replies: 3
Views: 9508

Re: Unite meshes

We have posted the 4.3.3751 update where IMeshEx has two new methods: Extract() and Merge(). Extract() compiles all simplexes touching a sphere or a box to another mesh. Merge() adds all simplexes from one mesh to another. The Cloud sample demonstrates usage of Extract. There is a new form opened on...
by nickz
Thu Dec 12, 2013 4:39 am
Forum: Bug Reports
Topic: Transparent Objects
Replies: 5
Views: 12051

Re: Transparent Objects

We have reproduced and fixed this. It was a regression missed a while ago. The fix will be available in the next update. Thank you for reporting

Sounds like a rectangle created with IStdShape.Rectangle() would be enough instead of the box

Nick
by nickz
Thu Dec 12, 2013 12:25 am
Forum: Bug Reports
Topic: iPick exception
Replies: 5
Views: 13913

Re: iPick exception

It should work. What kind of objects you have? Do you have a small model or test application/case? Also the GetItemAt() is pretty expensive. It needs to analyse the whole model. Mouse move events are very intensive. There are hundreds of them in even simple mouse move. So I would recommend a differe...
by nickz
Wed Dec 11, 2013 9:36 am
Forum: General Issues
Topic: Event for model change
Replies: 3
Views: 8507

Re: Event for model change

Hi atrev All events raised by KC are enumerated in http://www.dynoinsight.com/Help/DITypes.aspx#EDIEvent The mouse events are raised by its special events Apart from that there are: - Client Draw event raised on each redraws of window - Collision event when there was a collision of registered object...
by nickz
Wed Dec 11, 2013 8:37 am
Forum: General Issues
Topic: Getting points from mesh
Replies: 2
Views: 7971

Re: Getting points from mesh

Hi atrev Yes all geometry is defined relative to local coordinates so it does not change when the local frame is moved. You need : IModel > GetSection() > ISection > IFrame3 (or IFrameEx) > ToGlobal() . ToGlobal() will convert coordinates of the vertices or points in the point set to global ones KC ...