May 2012
1 / 12
May 2012
Jul 2012

Hi all,

In advance, sorry for my poor English.

For a final project year, I have a model home in order to build a city generator in python.
I have two options available to me.

First, I construct a curve to the base of my house.
Then I created another segment on each curve.

When I use the loft command on all the curves, I get the following result.

I have the same problem when I use the command birail 1 Tool.

For this project I am forced to use the curves to create the house.
I do not understand why in both cases, the house can not be closed.

Thank you in advance for your help.

Good Day,

Ampholyte

  • created

    May '12
  • last reply

    Jul '12
  • 11

    replies

  • 2.5k

    views

  • 1

    user

  • 1

    link

For the project, when you say you have to use the curves, do you have to use the curves provided? do you create your own curves? Does the model need to be one complete peice? can it be separate peices. can you create separate peices and join them together afterwards?

For the walls/roof of the house you could duplicate one of the curves and use it as the first and last curve you select for the loft. in this case, dont select the curves for the floor. the just use a planer for the floor.

getting the floor to be part of the surfice in one go would be trickier if that is necassery for whatever reason.

when working with nurbes, imagine a strechy sheet of paper that you fold  and bend along the curves to create a 3d Shape. there have to be four sides to the sheet (though you can pinch two corners to gether to create a triangle shape)

Thank you for your quick response.

When I took the floor of the house when I was a loft. Thanks to your directions, the house takes shape.

The aim of my project is to provide a script or plug'in python to create a city generator.

When the city created, the user can adapt the curves of houses in real time.

There is need that the contour of the house.

Thus, the user can create his own design house.

I would like to adapt the work of Tom Kelly and Peter Wonka for Maya :
http://twak.blogspot.fr/2011/04/interactive-architectural-modeling-with.html

Thank you again for your help, it works fine.

Ampholyte

That sounds like a cool project, I would be interested in seeing the result when you are finished.

Glad I could help

2 months later

No problem, the project will be finished in September. I'll post a video showing the purpose and perhaps the source code :smiley:
Thank you for your help =)

Actually there is a third option. thats to loft upwards. This may be conceptually simpler to think in the outline case. Its also easier to animate at a later date.

Thank you so much for this solution, I'll look at what it could give in my script. I just wish to edit using the vector. Why is this method is easier to animate?

Because the data is orthogonal to the most likely direction of animation, and there is less data. More importantly its way easeir to generate.

Heres a few computer created topologies of the base shape (i allowed for slant for a second where i took the one for demo set) , remeber one can do a lot of extension* on this with chimneys seconf floors outhouses, flat roofs onesided slants different slants heights, sections that dot reach the rooflevel etc. higher buildings make sense with H shaped topologies for instance, or might have different morphological needs. But here im only generating one surface, one simple piece.

  • so topologyother than just the layout graph and 2 different ends. Add to this data on the shape of the land and youll get a lot of variations with 3 or 4 rules.

This solution is great. I'm thinking now to put in place in my script.
I also thought of creating "database" that would contain information of some houses.

How do you manage to create the roof of the house with a loft?
Have you set specific options to build a loft?
Is it possible to mount the house at once? (As with the first solution).

Thank you so much for this solution. It will be harder to implement but will be much prettier =).

Thank you for your help and for your patience :smiley:

Loft (pun intended) MEL (paste into script editor and hit ctrl+enter)

file -f -new;
curve -d 1 
      -p 0 2 3 -p 0 2 0 -p 2 2 0 -p 2 2 0 
      -p 0 2 0 -p 0 2 -2 -p 0 2 -2 -p 0 2 3 
      -k 0 -k 3 -k 5 -k 5 -k 7 -k 9 -k 9 
      -k 14 ;
closeCurve -ch 0 -ps 1 -rpo 1  "curve1";
curve -d 1 
      -p 1 1 3 -p 1 1 1 -p 2 1 1 -p 2 1 -1 
      -p 1 1 -1 -p 1 1 -2 -p -1 1 -2 -p -1 1 3 
      -k 0 -k 3 -k 5 -k 5 -k 7 -k 9 -k 9 
       -k 14 ;
closeCurve -ch 0 -ps 1 -rpo 1 "curve2";
curve -d 1 
      -p 1 0 3 -p 1 0 1 -p 2 0 1 -p 2 0 -1 
      -p 1 0 -1 -p 1 0 -2 -p -1 0 -2 -p -1 0 3 
      -k 0 -k 3 -k 5 -k 5 -k 7 -k 9 -k 9 
      -k 14 ;
closeCurve -ch 0 -ps 1 -rpo 1 "curve3";
loft -d 1 curve1 curve2 curve3;

Amazing.
Thank you so much for this script Mel.
I am going to play around with this wonderful solution. I will try to draw my vectors to change this house.

Thank you again for your help !