V3 beta Nov-6-2012 (Win/Mac) available now
 1-20  21-40  41-60  61-80  …  101-115

Previous
Next
 From:  Michael Gibson
5524.21 In reply to 5524.20 
Hi Martin, no problem - I'm still not entirely sure what I should do for this kind of case where there is no $INSUNITS value set inside the DXF file, I guess the choices are that I could take it as "No unit system" which is what happens currently or the other choice is that I could pop up an additional dialog box that asks you what the units are and relies on you to happen to know the answer.

It sounds like this might be a nice improvement to ask for from Ucancam though, to write this particular $INSUNITS header value with the units setting out when they generate a DXF file, so that their DXF output would go into other programs with a units setting intact.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  blowlamp
5524.22 In reply to 5524.21 
Michael.

I'll certainly ask them at Ucancam, but interestingly, they use a pop up on import.

My view is that a Choose Unit pop up might be best, where they aren't embedded in the import file. The user then has to make the decision and wouldn't be put in the position of being puzzled by the lack of displayed units in MoI.

Even if the wrong units are picked, the user still knows which system he's chosen and can then scale the drawing accordingly - well at least that would work for me :)


Cheers.

Martin (2).
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Tommy (THOMASHELZLE)
5524.23 
I ran into a little problem here with the latest beta from November 6th:
I have a rectangular flat box with many circles booleaned out (think metal sheet with ventilation holes).
Now I want to fillet the edges of the holes on one side only, but seem to be unable to select the edges.

Went back to the last Beta and had no problem whatsoever selecting those edges.

I'll test some more later but for now I'm back to the September Beta.

Cheers,

Tom
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael T. (MICTU_UTCIM)
5524.24 In reply to 5524.17 
New v3 beta Nov-6-2012 IGES appears to be okay now as well.

Thanks again Michael G!
Michael Tuttle a.k.a. mictu http://www.coroflot.com/DesignsByTuttle
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.25 In reply to 5524.23 
Hi Tom,

> I have a rectangular flat box with many circles booleaned out (think metal sheet
> with ventilation holes).
> Now I want to fillet the edges of the holes on one side only, but seem to be
> unable to select the edges.

Can you please e-mail (moi@moi3d.com) me the 3DM file with these problem edges in it so I can take a look at what's going wrong there?

I tried to reproduce the problem with my own box and circles booleaned out but I couldn't get it to misbehave, so it may have something to do with the particular model file.

Thanks, - Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  PaQ
5524.26 
Hi Michael,

Thanks for the new beta.

Do you think it's possible to disable antialiasing completely ? or does it introduce some problems in the moi selection mechanism ?
The mean reason is to have better viewport perf ;)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.27 In reply to 5524.26 
Hi PaQ,

> Do you think it's possible to disable antialiasing completely ? or does it introduce some problems
> in the moi selection mechanism ?
> The mean reason is to have better viewport perf ;)

Just disabling anti-aliasing without actually changing how the drawing is done would not have any effect at all on performance because it doesn't really make much difference whether the video card is drawing textured polygons or untextured polygons, the fill rate on video cards these days is not a bottleneck at all.

It could possibly have some probably small impact to switch to draw line entities rather than sending polygon entities to the video card, but that's not exactly a minor change and still even then it's unlikely to have much effect because the process of breaking down curves into line segments would still be the same as before.

The main thing that could have a more significant effect would not be disabling anti-aliasing but by using fewer line segments to do the drawing, that would make the display not non-anti-aliased but instead more angular-polyline looking. I've experimented with that some with some of your own models, but just tweaking the current code to produce fewer line segments for each display bezier does not have much impact on many heavy models, instead it would need to work by dividing more of the entire curve into lines instead of going from the full curve to beziers first and then breaking down the beziers as the current mechanism works. So again that's a fair amount of change in order to have that option, and trying to work on full NURBS curves is not as fast as working with beziers, so it would probably have to try to divide it in 3D space only instead of doing it in screen space dynamically, and also that would probably mean caching the 3D polyline data, increasing memory consumption... (although I guess it could then not store beziers in that mode so that might be about the same for memory consumption as long as the polylines were somewhat coarse).

So there are some possible things to experiment with in the future but I've already done the "low hanging fruit" experiments and found little impact in things that are relatively easy to tweak without significant changes to the overall approach.

But I did make some major progress with display performance (not in all situations but in a lot of them) a couple of betas ago with the use of multiple cpu cores being used for the display engine now. Quite a bit of work went into that already, and currently I don't expect to do much more work on display performance through the rest of v3, the only things that I really know that could be possible now would involve degrading the display quality quite a bit. Like for example having all curves and edges display as jagged polylines that are fixed as 3D line segments will look really bad especially as you zoom in anywhere. But that's probably the main thing left to experiment with.

- Michael

EDITED: 7 Nov 2012 by MICHAEL GIBSON

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  blowlamp
5524.28 
Michael.

Because we're beta testing at the mo', it's easy (for me) to confuse v2 and v3, so would it be a good idea to change the logo in the upper right corner of the screen from plain old 'MoI', to 'Moi v3', or something, so as to differentiate between the old and the new? Adds a bit of bling, too ;)

Now I'm looking up there, I'm wondering if you could use that logo box as some kind of icon for, say more tools, or accessing scripts etc - nothing particular in mind, but it looks conveniently placed, whilst being far enough out of the way that it shouldn't be dangerous.



Martin (2)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.29 In reply to 5524.28 
Hi Martin, personally I like the minimalism of just plain "MoI" up there instead of any additional labels. But if you wish you can change your installation to have whatever label you want by editing the file SidePaneTitleBar.htm inside the \ui folder, on line 9 change the text that says MoI to MoI v3 or whatever.

That area is actually used currently for a debug menu that will be triggered if you hold down the Ctrl key and click on it, and also if you double click on it that's another way to un-minimize the main window, making it act similar to the title bar on a regular window (it's an old Windows shortcut that double clicking on a title bar does maximize/restore).

It's probably a bit too non-discoverable to use for very much stuff though, because it's more of a title looking thing and doesn't really look like a clickable control. I definitely want to have some way to organize scripts better in the UI, but I would want to have that as a more discoverable button actually labeled "Plugins" or "Scripts" or something like that which would pop up a menu, not quite so hidden.

Hopefully under normal circumstances you should be able to just run everything in the v3 beta rather than v2, but yeah I can see how you haven't been able to do that so well with the inset problems that I'm still working on tuning up. Those stem from updating the geometry library which can be one of the more disruptive types of processes that I have to go through. Once I've tracked down that remaining Inset bug is there any other reason why you'd be working in v2 rather than v3 all the time?

I mean it is good to be able to have v2 around also just in case there is something messed up in v3, but the main goal is to actually get v3 fixed and suitable for regular full time use all the time through the entire beta process. When I update the geometry library, that's one of the things that can tend to throw things a bit out of whack for a little bit though until the kinks are worked out.

- Michael

EDITED: 8 Nov 2012 by MICHAEL GIBSON

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  blowlamp
5524.30 In reply to 5524.29 
Hi Michael.

From your reply I learned at least three things about MoI and Windows, one of which is that you're way ahead of me with the idea of using that 'Icon' for something already :-)

I'm using v3 all the time, but being a newbie, if I hit a snag I'll reference back to v2 to see how things behave there, so I do get mixed up on occasion. Editing the file that you mention is easy enough and serves the purpose, so that's what I'll do - and I may just leave it there as evidence, when I upgrade.

Good luck with the bug-finding.




Martin (2).
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.31 In reply to 5524.30 
Hi Martin, just one quick note that I forgot to mention - when you go to edit the file when you launch the text editor that you'll use to edit it (like notepad or whatever you're using) you'll probably need to right-click it and choose "Run as administrator" to run the editor with a special privilege level, because by default recent versions of Windows have kind of locked down everything in the "Program Files" folder to avoid changes to them. But if you've run the editor with elevated privileges then it will work.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  blowlamp
5524.32 In reply to 5524.31 
Michael.

All done now - thanks for the help!


Martin (2).
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Martin (MARTIN3D)
5524.33 In reply to 5524.32 
Michael, I can't find the new setting in the .ini file that turns off script caching so I can test script edits without the need to restart MoI.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Message 5524.34 deleted 8 Nov 2012 by MARCO

Previous
Next
 From:  PaQ
5524.35 
Hi Michael,

Thanks for the explanation.
Btw I really appreciate the ThinAntiAliasing mode.

++
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Tommy (THOMASHELZLE)
5524.36 In reply to 5524.25 
Hey Michael,

thanks for your reply - I can no longer reproduce it myself. Maybe it was a fluke - on that day the latest Beta behaved rather odd.
I'll keep an eye out for this and if it happens again I'll try to create reproduction steps.

BTW. I start to hit the 32-Bit border regularly now on export. I know you don't plan to do the port to 64 Bit anytime soon, but I'm really looking forward to it.

Cheers,

Tom
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.37 In reply to 5524.33 
Hi Martin,

> Michael, I can't find the new setting in the .ini file that turns off script caching
> so I can test script edits without the need to restart MoI.

Sorry that one is still on my todo list and didn't quite make it into this release. It should make it into the next one.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.38 In reply to 5524.36 
Hi Tom,

> I know you don't plan to do the port to 64 Bit anytime soon, but I'm really looking forward to it.

It's going to involve a whole lot of work, including switching to a new compiler and updating all the various libraries that MoI uses.

I've also just recently completed a similar major porting project in producing the Mac version, and so I'm not really eager to jump again on doing many months of work for just one individual area like this would require, so a 64-bit port will not likely happen anytime soon.

Also in addition to that for larger projects I expect that some particular features like instancing will actually help more than 64-bit-ness, so I don't want to go off into 64-bit work while there are other major feature areas that still need addressing more than that.


If you're hitting limits right now, you probably need to break a really large project up into some separate files.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  PaQ
5524.39 
Hi Michael,

There is still something I dont completely get about MoI viewport performance.
(Please forgive me, I dont want to annoy you about that topic ... it's just by curiosity).

If I understand right, it's the curve line segmentation that get the most impact in the drawing performance.

But what about the MoI mesher ? There is a really huge difference of performance when I export a model into polygones, between Shaded display and Shaded + edges.

On an average model (250.000 ngones), shade + edges is about 15fps, while shade only hit the display refresh limit : 60 fps

When I look at the same model in modo, there is no such a big gap between shaded and shaded + wire ... (for both mode I'm at 60 fps).

It's not a complain, and I dont want to compare MoI viewport engine to modo one, but I find the result very interresting.

Maybe there is something in 'modern' graphic card you don't use for compatibily purpose than can really boost lines segments drawing ?
(not sure if it makes sence for you :))
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
5524.40 In reply to 5524.39 
Hi PaQ - that particular area for displaying edges of polygon meshes at mesh export time is a kind of special case area of the drawing engine, before the stuff I was talking about was more for the general case area of the regular working display where there are actual curves being displayed.

Currently MoI does treat those mesh-export polygon edges with basically the same process as curves, so it handles projecting the vertices onto the screen and forming polygons and then sending those polygons to the graphics card. That whole projection process is pretty fundamental for curve drawing since curves need to be broken down into individual separate lines, but for polygon edges it's not really quite the same thing so yeah for that particular area it could be possible to get a speed increase if I were to send 3D lines to the video card rather than textured polygons with the downside being that they won't get any antialiasing on them.

I can probably do an experiment in that one particular area - basically it's not an area that I've focused on a whole lot for performance tuning since it's only something that happens at one particular time (during mesh export) rather than all the time through regular work.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All

 

 
Show messages:  1-20  21-40  41-60  61-80  81-100  101-115