The Brain Amplfier - 50's comp entry
 1-20  21-28

Next
 From:  -ash-
2297.1 
Hi all,

This was my entry for the Nurbs and Polys 50's sci-fi competition. I think there were three of us using MoI for this, me, Paq and Danny. [edit] actually there were four, Anis also used MoI for his entry[] This is the Brain Amplifier, a machine of my own design. All modeling was done in MoI then exported to modo and rendered.

I really enjoyed this competition and using MoI was a joy. I used the latest beta for the whole thing with no issues except the mirror normal flip problem. I found I used the cplane and new size display/edit control a lot too. This model really pushed my machine though. I had the mesh angle up as high as 50 with inflections turned off and navigation was still very sluggish, probably due to all the fillets. So I'm looking forward to Michael s mesh speed up coming along.

Here's some views of the completed model as rendered in modo:










and I've attached some screen grabs from MoI.

Cheers.

EDITED: 6 Jan 2009 by -ASH-


Image Attachments:
Size: 73.6 KB, Downloaded: 40 times, Dimensions: 698x472px
Size: 54.4 KB, Downloaded: 19 times, Dimensions: 649x530px
Size: 54.8 KB, Downloaded: 20 times, Dimensions: 619x854px
Size: 40.8 KB, Downloaded: 23 times, Dimensions: 518x532px
Size: 74.5 KB, Downloaded: 30 times, Dimensions: 800x631px
Size: 45.5 KB, Downloaded: 15 times, Dimensions: 503x789px
  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
2297.2 In reply to 2297.1 
Hi Tony, Wow! My brain feels amplified just looking at it, let alone sitting in that chair! :)

What a great amount of detail in all the controls!


re: Mirror flipping normals - this one is fixed for the next beta, hopefully not too much longer for that. Still working on just a few more export meshing speedups at the moment.


re: Sluggish view - that is not particularly surprising given the amount of detail that you have there... But it is likely for your case there that curve/edge drawing is actually taking the largest amount of time. If you still get a sluggish display with the mesh angle turned up to 50 and "add detail to inflections" unchecked, then the other thing that you can do is to hide the edges on pieces that you are not going to be actively working on. That will probably give a significant boost.

Curve drawing is always done to a rather fine level currently, it does not get adjusted to be coarser when the mesh angle is set to coarse. A bit later on in v2 I'm going to try to adjust the fineness of the curve drawing to be a little more jagged in denser scenes which should help.

Also turning off Options / View / Display hidden lines will speed up curve drawing, since having hidden line display on requires 2 curve drawing passes.

- 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:  kevjon
2297.3 
I remember the brain amplifier for the 50's movie the Forbidden Planet.

Very nice detail, which looks impressive.

Are you going to texture it too ?
~Kevin~
  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:  Frenchy Pilou (PILOU)
2297.4 
Cool precise modeling indeed!
Mad dentist :)

Remember this sort of thing ;)
  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-
2297.5 
Thanks for the comments.

Frenchy:

>>Mad dentist :)
Yes, the chair was based on dentist chair pictures I found on the web ;-)

>> Remember this sort of thing
Yes I do - you should see under my desk :-)


kevjon:
Yes, I plan to texture as well.


Michael:
I turned the the hidden lines off for the major assembly stuff. I usually had 3 or 4 instances of MoI running at a time with various view settings depending on the complexity of the part I was modeling. Easy to cut and paste from one to the other. I set up the scene as I went along and made good use of the cplane when adding bits. In the end I had to keep the panels for the main control station (the one with the monitors) separate from the main assy file.

Should be easier to manage when you have the grouping stuff done.

Here's a grab of some of those nice ngons MoI hands over to modo :-)


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:  PaQ
2297.6 In reply to 2297.5 
Hi Tony !

<< I usually had 3 or 4 instances of MoI running at a time with various view settings depending on the complexity of the part I was modeling>>

Hey, but that's my workflow :)

Really nice entry, I really hope you'll lit this scene anytime soon !
I really enjoy using MoI for this project too, I will never get the time to experiment every surfaces shapes like I did if I had to do it with poly's.
That having said, now that the model is finished and exported, I'm starting to see a quite huge bottleneck in my workflow, called uv's.

With traditionnal (well it's traditionnal for me) subd's process, you always get a light version of you're modeling, and everything is smoothed at the
rendertime. So even with complex object, I never build more that 100.000 or 200.000 poly's (mostly quad) for my cage object, and it's quite easy to unwarp everything
with some good uv's tools (I mostly use UV-Layout).

But with models coming from MoI, I put so much detail in that I finish with huge mesh (> 2.000.000 tris), an even in ngone, unwarping this kind of models is
a big pain.

I have no idea how resolve this, so I'm really curious to ear how you manage this in modo for example, as you produce some heavy mesh too.
  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
2297.7 In reply to 2297.2 
Hi Michael,

<< If you still get a sluggish display with the mesh angle turned up to 50 and "add detail to inflections" unchecked, then the other thing that you can do is to hide the edges on pieces that you are not going to be actively working on>>

Well that's what I do most of the time, using this script :

script:var breps = moi.geometryDatabase.getObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var edges = breps.item(i).getEdges(); if ( i == 0 ) hide = !edges.item(0).hidden; edges.setProperty( 'hidden', hide ); }

The problem is with this script

- I'm hidding/showing edges from the entire scene, would be cool if it's possible to hidde edges only on selected models
- Everytime I manipulate the object (move, scale, mirror), edges are automatically on again, so it would be nice if the 'hidded' state is concerved.

Now I can imagine this workflow will be obsolete with the layers incoming too.
  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
2297.8 In reply to 2297.7 
Hi PaQ,

> - I'm hidding/showing edges from the entire scene, would be
> cool if it's possible to hidde edges only on selected models

Just a minor change to that script will do that:

script:var breps = moi.geometryDatabase.getSelectedObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var edges = breps.item(i).getEdges(); if ( i == 0 ) hide = !edges.item(0).hidden; edges.setProperty( 'hidden', hide ); }

This version will now only turn edges on or off on selected objects instead of everything.


> so it would be nice if the 'hidded' state is concerved.

Yeah I think that should be something I can tune up before the end of v2.

- 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
2297.9 In reply to 2297.8 
Hi PaQ, also another variation:

script:var gd = moi.geometryDatabase; var breps = gd.getSelectedObjects().getBReps(); if ( breps.length == 0 ) breps = gd.getObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var edges = breps.item(i).getEdges(); if ( i == 0 ) hide = !edges.item(0).hidden; edges.setProperty( 'hidden', hide ); }


This one will do just the selected objects if there is a selection, otherwise if there is no object selected it will do everything.

- 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:  Brian (BWTR)
2297.10 In reply to 2297.9 
All this double dutch--stuff that I really don't want to know----

Now, if it was a one click, clearly explained, in the shortcuts list?

Brian shows his age--- again!
  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
2297.11 In reply to 2297.10 
Hi Brian,

> Now, if it was a one click, clearly explained, in the shortcuts list?

I guess that would be interesting.... But to pre-populate the shortcuts list with every single possible action script that every person wants for every possible action, would seem to require me to be able to foretell the future!

I'm sorry but I haven't figured out how to do that yet!

I agree it would be cool if I could do it though, do I need to get strapped into the brain amplifier machine to make it happen? :)

- 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:  Brian (BWTR)
2297.12 In reply to 2297.11 
YES!

Brian
  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
2297.13 In reply to 2297.12 
Looks like it might be painful though! :)

- 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:  Brian (BWTR)
2297.14 In reply to 2297.13 
Yes!
I had friends in the 1940s who went through Labotomies and electric shock. NOT funny!

Add the attached to the maybe/wishfull/future potentials/ideas file.

Brian
Image Attachments:
Size: 67.8 KB, Downloaded: 76 times, Dimensions: 1410x536px
  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)
2297.15 In reply to 2297.11 
FOR SALE

One slightly used crystal ball, future telling 95% accurate :)

I already know who is going to buy it :P


---------
~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:  Brian (BWTR)
2297.16 In reply to 2297.15 
My Dad never flew in a plane. (Or sailed "overseas")
Back in the days of the 1920s depression he built radios in the back shed of his grocery store at night.
At the time the only local radio station was in a tent on the citys parklands!

We have here at home the Pianolla--and all the old rolls---which he swapped for one of the radios he built!

I wonder what he would make of all this 3D stuff I am involved with now?
(He was very upset when I branched out on my own to be a "photographer" and got involved with "art" and painting in the late 1960s.)

Brian

ps--To get the mind going, for those interested in Art History, my dad was born in the year the "Impresionists Movement" ended. (Note, truly, would you believe---ended!)

EDITED: 5 Jan 2009 by BWTR

  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
2297.17 In reply to 2297.14 
Looks like the plugin Gallery! All those commands in one moveable window. When it all is settled in, I will make it small like that if you prefer. and per another thread, We will make sure your UI is set. When its done. It's like baking a cake. If we keep opening the door, it will never be done. If we let it finish cooking, It tastes great.
  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:  Brian (BWTR)
2297.18 In reply to 2297.17 
Lovely mate!

Nothing like having a man of few words!

Can you teach my bride, of 55years on the 16th, how to not burn the toast?

Brian
  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
2297.19 In reply to 2297.5 
Hi Tony,

> Here's a grab of some of those nice ngons MoI hands over to modo :-)

Love to see those clean wireframes! :)

- 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:  max3d (DAVEDAVIDSON)
2297.20 In reply to 2297.19 
very nice and detailed mate
www.max3d.org
  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-28