I am looking for a way to create 3D objects by rotating a spline around the Y axis on android. The result should be a bowl/glass like object:
http://www.3d-resources.com/cinema_4d_tutorials/realistic_glass_tutorial.html
The shape of the form should be dynamic, the user should be able to tweek the radius and control points of the spline in the app.
Basically I am looking for the most straightforward way to implement this. Can someone point me in the right direction? (Framework, exemplary implementation,...)
Is there a well known name for this modeling technique? (in cinema 4d it is called "lathe nurbs")
----- EDIT -----
My input is a sequence of 2D control points (bezier path) and the radius between the rotation axis and the spline. My output should be a realtime 3D rendering of the object which is created by rotating the spline around the axis.
Information about buzier curve and about surface rotation.
You can take code from github.
I wrote it few years ago, when I was quite new in Java, so code quality can be a bit poor...
Output:
Main classes:
BezierCurve:
Complex:
Cone:
ConeSurface:
Line:
Line3D:
Point:
Point3D:
SurfaceBasedOnBuzierCurve:
ControlUtil:
GraphicUtil: