|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I have some shapes
#declare f_parabola=function(x,y,a){
y-a*x*x
}
parabola.
and its modify..
Post a reply to this message
Attachments:
Download 'bowl test_3.png' (412 KB)
Preview of image 'bowl test_3.png'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
different coefficients
Post a reply to this message
Attachments:
Download 'bowl test_4.png' (437 KB)
Preview of image 'bowl test_4.png'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
spin to a circle
#declare f_ =
function(x, y, z) {
pow(f_parabola(sqrt(x*x + z*z), y, 1), 2) + 0.6*y*y - 0.01
}
isosurface{...}
Post a reply to this message
Attachments:
Download 'isosurface.png' (803 KB)
Preview of image 'isosurface.png'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
spin another axes
#declare f_tee =
function(x, y, z) {
pow(f_parabola(x, y, 1), 2) + 0.6*y*y + 1.2*z*z - 0.01
}
isosurface{...}
Post a reply to this message
Attachments:
Download 'isosurface.png' (809 KB)
Preview of image 'isosurface.png'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 02/13/2018 03:06 AM, And wrote:
> spin another axes
>
>
> #declare f_tee =
> function(x, y, z) {
> pow(f_parabola(x, y, 1), 2) + 0.6*y*y + 1.2*z*z - 0.01
> }
>
>
> isosurface{...}
>
Neat! Thanks for posting.
Bill P.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
William F Pokorny <ano### [at] anonymousorg> wrote:
> On 02/13/2018 03:06 AM, And wrote:
> > spin another axes
> >
> >
> > #declare f_tee =
> > function(x, y, z) {
> > pow(f_parabola(x, y, 1), 2) + 0.6*y*y + 1.2*z*z - 0.01
> > }
> >
> >
> > isosurface{...}
> >
> Neat! Thanks for posting.
>
> Bill P.
Like.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |