Search found 397 matches

by nickz
Sun Dec 08, 2013 2:03 am
Forum: Bug Reports
Topic: Problem with .NET 4
Replies: 3
Views: 8853

Problem with .NET 4

Moved here from http://www.dynoinsight.com/phpBB3/viewtopic.php?f=3&t=2871 By atrev: One of the errors that can be produced easily, which maybe by design, but an oversight, is that when you create a VB.NET project targeting .NET Framework 4, even though the application compiles and loads, right clic...
by nickz
Sat Dec 07, 2013 11:28 pm
Forum: General Issues
Topic: Reducing meshed objects
Replies: 1
Views: 6620

Reducing meshed objects

Hello all, I have decided to emphasize a useful bit out of http://www.dynoinsight.com/phpBB3/viewtopic.php?f=3&t=2871 discussion. When there are some problems with a large object one of the first things to do is to reduce the size. The most reliable way to do it is to use IMeshEx.Extract() operation...
by nickz
Fri Dec 06, 2013 2:06 am
Forum: General Issues
Topic: Loading multiple stl
Replies: 3
Views: 8574

Re: Loading multiple stl

Hello You do not need another control. It is done by creating new model in memory, getting its IModelEx and using IModelEx.Load() like in Samples\NET\C#\3DBugger\DebuggerForm.cs : IModel iModel = (IModel)m_iDIObjGenerator.Create(EObjectType.eObjTypeModelGenerator); IModelEx iModelEx = (IModelEx)iMod...
by nickz
Fri Dec 06, 2013 1:27 am
Forum: General Issues
Topic: Build numbers
Replies: 1
Views: 6020

Re: Build numbers

Good point
We will add this with the next update
Nick
by nickz
Thu Dec 05, 2013 11:41 am
Forum: Bug Reports
Topic: Problems with control
Replies: 3
Views: 8751

Re: Problems with control

Hello Sorry about the bugs. Normally almost every project has issues initially. Geometry can be so different. We are here to help. Once it gets going it will work for years 1. Yes. The CrossView shows intersection with planes, which are assumed to be infinite. Once intersection is calculated it is p...
by nickz
Wed Dec 04, 2013 3:58 am
Forum: General Issues
Topic: stl to step
Replies: 1
Views: 6158

Re: stl to step

Hi Qin Not really. When a model is saved as a step only step – compliant objects (http://www.dynoinsight.com/Help/Geom/Objects/BRep/BSplines/BSplineBRep.aspx) are saved. The other objects are ignored. The conversion is not possible in general case. Stl is the most basic format. It keeps mostly raw v...
by nickz
Fri Nov 29, 2013 6:18 am
Forum: General Issues
Topic: Mesh healing
Replies: 1
Views: 6283

Re: Mesh healing

Hi Dejan We have integrated MeshLab http://meshlab.sourceforge.net/ a while ago. There is lots of mesh handling functionality including healing tasks like hole filling, smoothing, validation etc. Unfortunately only small part, demonstrated in the Cloud sample is exposed to developers. The reason is ...
by nickz
Tue Nov 26, 2013 8:51 am
Forum: Bug Reports
Topic: Empty window in 64 bit app Visual Studio 12
Replies: 6
Views: 14371

Re: Empty window in 64 bit app Visual Studio 12

We have made progress with .NET 4 support, but at the moment it looks like it will have to be in the new version 4.4. There are too many changes, which can destabilise the software. We hope to make a quick release for this purpose KC is the top of a long chain of component suppliers. Some of them ar...
by nickz
Fri Nov 22, 2013 1:39 am
Forum: Bug Reports
Topic: memory release
Replies: 12
Views: 23881

Re: memory release

Remember also that .NET garbage collection is not deterministic. The actual memory is released using an algorithm which from developer’s point of view is unpredictable. This means that the memory might not go down immediately and not by the exactly same amount. In the example the Process.GetCurrentP...
by nickz
Thu Nov 21, 2013 3:24 am
Forum: Bug Reports
Topic: memory release
Replies: 12
Views: 23881

Re: memory release

atrev, I have debugged your sample. In this particular case it is caused by the fact that a reference to the removed section is not released (not set to Nothing) by the application Briefly the situation is this: You have a large mesh section object in the model and ISection m_iSectMesh member of the...