Forum: Carrara


Subject: Formula object paraboloid

Michael_C opened this issue on Feb 06, 2007 · 6 posts


Michael_C posted Tue, 06 February 2007 at 7:14 AM

I want to model a formula object as a paraboloid.  I've fiddled with the formulas some but don't see how to get to the paraboloid.  Can someone help.  Thanks.

My Store - My Gallery - My Freebies - My Web Site


nruddock posted Tue, 06 February 2007 at 4:50 PM

The classic formula for an Elliptic paraboloid is :-
x2   y2
-- + -- = 2z
a2   b2

This translates to :-
a=2.0;
b=2.0;
t=30*(u-0.5);
s=30*(v-0.5);
x=t;
y=s;
z=(((tt) / (a * a)) + ((ss) / (b * b))) / 2.0;

If you want a Hyperbolic paraboloid substitute :-
z=(((tt) / (a * a)) - ((ss) / (b * b))) / 2.0;


Michael_C posted Tue, 06 February 2007 at 5:04 PM

Thanks.  That's exactly what I was looking for.

Can you point someplace I can learn about making that u,v translation?

My Store - My Gallery - My Freebies - My Web Site


nruddock posted Tue, 06 February 2007 at 6:37 PM

See if any of these make sense (Google for "Parametric Surface" for others) :-
http://www.math.duke.edu/education/ccp/materials/mvcalc/parasurfs/para1.html
http://en.wikipedia.org/wiki/Parametric_surface
http://cs.jsu.edu/mcis/faculty/leathrum/Mathlets/parasurf.html

It was straight forward in this case as x and y are just scaled version of u and v, for other non-parametric surface definitions, things will be trickier.


Michael_C posted Wed, 07 February 2007 at 7:22 AM

Thanks.  This good stuff.  I expect to be working with some surfaces in the near future and these will be good resources for trying to depict them.

My Store - My Gallery - My Freebies - My Web Site


bwtr posted Wed, 07 February 2007 at 4:25 PM

http://gianp.free.fr/carrara/indexcarrara.html

This is the HUGE list of Carrara formulae.

bwtr