V2 beta Jun-23-2009 available now
 1  2-21  22-41  42-44

Previous
Next
 From:  Frenchy Pilou (PILOU)
2711.2 In reply to 2711.1 
And cool Browser can be on the Opposite side :)
Claude Nicolas Ledoux would have liked that! http://en.wikipedia.org/wiki/Claude_Nicolas_Ledoux

Some Notes to translate :)



EDITED: 23 Jun 2009 by PILOU

Attachments:

  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:  -ash-
2711.3 In reply to 2711.2 
Once more a stack of good stuff in this beta. I'll looking forward to working with it.

But I'll need to download again as looks like you added the 'opposite' option after I already got it and before the announcement :-)

Regards
Tony

(aka HamSoles)

  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:  DannyT (DANTAS)
2711.4 In reply to 2711.1 
Woh! There's a whole bunch of stuff, and good stuff at that, good going Michael!

Just one thing I couldn't get to work, that's the 'Rotate with middle button' option, when selecting this option, the middle, as well as the RMB pan only, in 3D view, no rotation at all, that's here on a vista laptop, I haven't tested on another PC, I'll keep you updated when I do.

Cheers
~Danny~
  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:  WillBellJr
2711.5 
I've been waiting for this for a LOOooong tyme!

Thanks Michael!

-Will
  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:  ed (EDDYF)
2711.6 
Styles (material assignments) for OBJ output is the feature I was waiting for. Works very well with Hypershot and will save me a lot of time.

Sorry if I may have missed this, but is there a way to save my Style (color) definitions so they appear when I open a new session of MoI?

Ed
  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:  tyglik
2711.7 
Hi Michael!,

...still involved in MoI development...stay tuned to my comments and wishes :)

Considering this three states of Types part of browser...








...I think the ctrl+right click on Lock (or right click on Eye) icon of locked / hidden / partially hidden item should unlock / show all but "active" (it means the item adjacent to the icon under the cursor) - for example (see first image), currently there is no difference between ctrl+left and ctrl+right on Lock icon of Curves item. It result in unlocking curves. I would prefer the ctrl+right click led to unlocking all types but curves.

Note, that it also applies to Styles items.

Petr

EDITED: 23 Jun 2009 by TYGLIK


  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:  Schbeurd
2711.8 In reply to 2711.6 
>>> Sorry if I may have missed this, but is there a way to save my Style (color) definitions so they appear when I open a new session of MoI?


You can save them in an empty file and use the file as a template (Options > General > Template file)
  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:  ed (EDDYF)
2711.9 In reply to 2711.8 
I was unaware of the Template File option - Thanks!

Ed
  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:  Micha
2711.10 In reply to 2711.7 
I'm very interested on a way to mesh Rhino NURBS objects and bring back the meshes at the right layers. Could be there a chance to get something for it? Maybe an option could be implemented that allow to save styles as mesh names (without joining meshes with the same name) and at Rhino a script move the meshes back to the original layers?
Michael, if you like to get v2 ready now, maybe it's something for a v2.1 later. ;)
Visualisation for Designer and Architects - www.simulacrum.de
  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
2711.11 In reply to 2711.10 
Hi Micha, re: mesh Rhino NURBS and bring back into Rhino with the same layers.

> Maybe an option could be implemented that allow to
> save styles as mesh names (without joining meshes
> with the same name) and at Rhino a script move the
> meshes back to the original layers?

I think it should be possible to handle this part by a script right now in MoI.

For example, if you set up the following script on a keyboard shortcut:

script: /* Set object name as style name + num */ var objs = moi.geometryDatabase.getObjects(); var styles = moi.geometryDatabase.getObjectStyles(); for ( var i = 0; i < objs.length; ++i ) { var obj = objs.item(i); obj.name = styles.item(obj.styleIndex).name + '_' + i; }

Then when you hit that shortcut key each object will get assigned a name of its associated style name, plus a unique increasing number, like BlueLayer_2, BlueLayer_3, etc...

The number is appended to make the names unique to avoid combination of mesh objects with identical names.

After you have run that script, then when you export to OBJ and read into Rhino, that information of what layer the mesh was originally on will stored in the object name, and some Rhino script code should probably be able to go through the meshes, strip off the ending _xxx which will then give it the layer name to place that object on.

Probably if you can clearly state the problem in the Rhino newsgroup someone will be able to help you with that part. Something like: "I have a bunch of mesh objects with layers stored in their names, like BlueLayer_1, BlueLayer_2, OrangeLayer_5, etc... and I want to edit these objects to place them on the layer that is named in the object name, like assign BlueLayer_1 to the layer named "BlueLayer", etc...


You can incorporate that same MoI script above to be a built in part of your batch conversion script if you want, just after the opening of the model file. Here is more readable version of it for putting in a text file rather than in a single-line keyboard shortcut:

code:
// Set object names to be their Style name + unique number.
var objs = moi.geometryDatabase.getObjects();
var styles = moi.geometryDatabase.getObjectStyles();
for ( var i = 0; i < objs.length; ++i )
{
       var obj = objs.item(i);
       obj.name = styles.item(obj.styleIndex).name + '_' + i;
}




- 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
2711.12 In reply to 2711.4 
Hi Danny,

> Just one thing I couldn't get to work, that's the 'Rotate with
> middle button' option, when selecting this option, the middle,
> as well as the RMB pan only, in 3D view, no rotation at all,

Thanks for reporting this - it looks like that's a bug when the 3D view is set to be parallel rather than perspective.

That's probably a lingering bug where some things had assumed that a parallel view was always an ortho-plan one, since in MoI v1 that was the case.

It should be easy to tune up, I'll take a look.

- 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:  WillBellJr
2711.13 
Michael, I just had to chime back in and say that MoI is an absolute pleasure to work with now that I can assign my surfaces and have them xfer over to my other apps!

I'm also loving the browser and how I can select, hide and show things - hella powerful compared to v1, it just all ties in so nicely now having the browser along with the surface assignment features.

At one point I was thinking to myself that it felt like I was working in Silo or a polygon modeler but with the pleasure of NURBS!



The only thing I was sorely missing at this point and I'd be really nice if you could get a solution in there is a headlight for the 3D view.

Spinning and selecting surfaces at times was hard because they'd fall into darkness. I know you've posted scripts to change the light direction and I'll have to look those up, especially now, but a constant light direction while spinning my objects would keep the comfort level for me on a level high.



At one point, I was also wishing for an additional selection mode.

I had an object that I had assigned globally to a surface name. But then I wanted to take just a few of the shared surfaces and assign them to yet another surface.


At first I tried to select just parts of the assembly using the right to left selection method but that would select the whole object.

Now having the ability to intricately assign surfaces, I was looking for a way to be able to quickly select only what's touched while going left to right and not the whole object.


I ultimately had to break apart the object and using the right to left selection method, it was easier to select the larger surfaces and hide them leaving the smaller surfaces to reassign to the new surface defnition then join everything back together...


I think what would be really helpful is a way to select surfaces that cursor touches - I guess like a paint selection mode. Of course the opposite should be available - hold down [ctrl] and deselect whatever the cursor brushes across...



-Will
  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
2711.14 In reply to 2711.13 
Hi Will - I'm glad the surface assignments and scene browser are working
well for you! Hopefully that will save time.

Quick note re: headlight - yeah you can actually have a pointing-straight-forward
headlight in MoI if you want, if you set up a keyboard shortcut.

To do that, go to Options / Shortcut keys and add in a new entry. For the key
put in whatever you want, but maybe L would be a good choice to be short
for Light. Or whatever you will remember.

Then for the command part, paste in the following:
code:
script:/* Toggle between headlight and regular light directions */ var dir = moi.view.lightDirection; if ( dir.x == 1 && dir.y == 1 && dir.z == -1 ) { dir.set(0,1,0); } else { dir.set(1,1,-1); } moi.view.lightDirection = dir;

Then when you hit L you should have your headlight set up.

- 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:  BurrMan
2711.15 In reply to 2711.14 
I was just thinking of that last night. Good one.
  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
2711.16 
The script copier utility for this release.

You can download and run the attached ScriptCopier_Jun_23_2009.exe program, which will copy custom added scripts from your MoI v1 installation to the new beta's installation folder.

- 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
2711.17 In reply to 2711.7 
Hi Petr, it's great to hear from you, you've been away from the forum for a long time!

I'm not exactly sure if I'm following what you are talking about for Ctrl+Right-click though...

You wrote:
> for example (see first image), currently there is no
> difference between ctrl+left and ctrl+right on Lock
> icon of Curves item.

There will be a difference between them when you do a second ctrl+right click though. That will unlock everything because that is meant as an "exit from isolate".


> I would prefer the ctrl+right click led to unlocking
> all types but curves.

If I understand correctly though, that is sort of the opposite of what right-click is meant to do.

Right-click (either with Ctrl or not) is meant as an "isolate" function - which means that it will "activate" (either show if no Ctrl, or unlock if Ctrl is held) the item you clicked on and "deactivate" (either hide if no Ctrl or lock if Ctrl is held) everything else. If that item was already active, then it will activate everything, which allows for a kind of "exit from isolate" on a second click.

In the case that you are talking about, all the other items happen to already be locked when your item is isolated, so yes that does not have any difference between Ctrl+Left or Ctrl+Right, but that's the same behavior as regular right-click without Ctrl.

For example if you have all styles hidden and you now right-click on one of them, just that one will turn on which happens to be the same as if you left-clicked for that case since everything else is already in the state that isolates that object.


If you want to get all things unlocked except for curves, the way you can do that is to Ctrl+right-click on curves until all things are unlocked which may take 2 clicks depending on your starting state, then use Ctrl+Left click to lock the curves item that you are on.


Basically the right-click set of actions whether Ctrl is down or not are meant to either activate the current item, or to re-activate all items. So in either case it is going to be activating that current item and not de-activating it. The method that you are talking about would be like deactivating that item rather than "isolating" it as the only active item...


Maybe this will make a little more sense: populate the styles section with all eyes. Now hold down Ctrl and right-click on one of them. You'll see here that everything else other than what you clicked on will become locked - that's the "isolate lock" - the item you picked is now the only unlocked one and everything else is locked. When you are done working on that isolated item, you can then repeat the same click on it and everything else will be activated again.



Please let me know if this does not make sense though, it's a fairly subtle area and maybe I did not understand what you were getting at.

- 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
2711.18 In reply to 2711.7 
Hi Petr, also here is an illustration of how the right-click is set up, this may be clearer.

So in the following I am right-clicking on some items without Ctrl down. As you can see this produces an "isolate" of the item that is clicked on where it becomes the only active (visible) item and all other things deactivated (hidden). Then notice the final click - if you right-click on an item that is already isolated, everything will reset:



So now here I am repeating the same sequence but instead holding down Ctrl. You can see that the action is the same, except it applies Unlocked / Locked as what is meant by Activated / Deactivated:



So that's basically what the right-click is mean for, either with Ctrl or not, Ctrl just applies it as locking/unlocking things rather than hiding/showing. But the basic mechanism to "isolate" the item being clicked is the same.

- 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:  tyglik
2711.19 In reply to 2711.17 
Hi Michael,

>> Please let me know if this does not make sense though, it's a fairly subtle area

No, it does perfect sense! Basically, it is exactly the same behaviour like for batch processing of snap menu, isn't it? I think you understood me very well. What I was talking about was related to the case and only the case in which ALL items are locked or hidden or locked&hidden. But I can see it now. It would make things somewhat complicated. Like you wrote- ""right-click (either with Ctrl or not) "activate" (either show if no Ctrl, or unlock if Ctrl is held) the item you clicked on and "deactivate" (either hide if no Ctrl or lock if Ctrl is held) everything else. If that item was already active, then it will activate everything"". -It means that only the state of item being clicked is taken into account and not the state of other items when deciding whether making the isolation or "exiting from isolate".


>> If you want to get all things unlocked except for curves,
>> the way you can do that is to Ctrl+right-click on curves until
>> all things are unlocked which may take 2 clicks depending on your
>> starting state, then use Ctrl+Left click to lock the curves item that you are on.

Basically yes. Except the state of curve(s) created after setting "starting state" - they will be locked after all. In the case I was talking about that I would prefer there will be both locked and unlocked curves (and unlocked everything else).

Petr
  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
2711.20 In reply to 2711.19 
Hi Petr,

> Basically, it is exactly the same behaviour like for batch
> processing of snap menu, isn't it?

Yup, it's meant to follow that same model.

The nice thing about that model is that it kind of serves 2 purposes with the same mechanism - one is to make that isolate function to be able to get to that "only show this one category" state with just a single click (like in the screencap above).

Then the other use is just as a general shortcut for displaying all things - if you have a mixed state with some things on and some things off, you can do 2 right-clicks on any item to show them all.

Yeah, I hesitate to make additional behavior for other cases... If it gets too complicated with different behavior for special cases it will probably get more difficult to use in a natural way.


> It means that only the state of item being clicked is
> taken into account and not the state of other items when
> deciding whether making the isolation or "exiting from isolate".

What it actually does for this, is that it always first tries to isolate the item, but it keeps track of what was done in order to get to the isolated state.

If there were no changes performed during the isolation, then it knows that item was already isolated and it will do the "exit from isolate" operation instead.

So the state of other objects is actually taken into account though, since the process of isolating an object does mean to deactivate other objects. When all other objects were already deactivated, that's when "exit from isolate" happens.


There is also now a slightly different kind of isolate available by right-click on the Edit/Hide or Edit/Lock buttons on the side pane rather than in the Scene browser. Those isolates actually store a snapshot of the state of all objects when you perform the isolate (which in this case is targeted by selection rather than by style or type as in the scene browser), so that when you exit it the previous state, including mixtures of some hidden, some visible, etc... is restored rather than having all things turned on as with the scene browser 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:  niko (NICKP100)
2711.21 In reply to 2711.20 
Awesome michael.
Any word on sweeps?
I believe you mentioned that they would be fixed on this beta if I'm not mistaken.

Thanks in advance.
  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  2-21  22-41  42-44