Tutorial - How to make Egg stand or other repeatable surface pattern


Checked in Pro/E, SW, Maya, so:
-
Step 1:
1. draw two curves
1st
x = 4*cos(t*360*c)
y = t*len
z=0
2nd
x = 4*cos(t*360*c)
y = 0
z = t*len! in Maya you need iteration method:
curve -p 0 0 0 -n "sin1";
float $x, $y, $l=200, $pi=3.1415927;
int $i=0;
for ($i=0; $i < $l; $i++)
{
$x=3*$i*$pi/$l;
$y=sin ($x);
curve -p ($x) ($y) 0 -a "sin1";
};...and copy them to complete polygone
-
Step 2:
2. make boundary surface
-
Step 3:
3. ...and thicken it
-
Step 4:
4. cut corners
-
Step 5:
5. round border