POV-Ray : Newsgroups : povray.binaries.images : Some shapes I found Server Time
18 Apr 2024 16:26:28 EDT (-0400)
  Some shapes I found (Message 1 to 6 of 6)  
From: And
Subject: Some shapes I found
Date: 13 Feb 2018 02:25:01
Message: <web.5a8291fc5408c873e96a371c0@news.povray.org>
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'
bowl test_3.png


 

From: And
Subject: Re: Some shapes I found
Date: 13 Feb 2018 02:30:00
Message: <web.5a8293e21b30403de96a371c0@news.povray.org>
different coefficients


Post a reply to this message


Attachments:
Download 'bowl test_4.png' (437 KB)

Preview of image 'bowl test_4.png'
bowl test_4.png


 

From: And
Subject: Re: Some shapes I found
Date: 13 Feb 2018 02:45:01
Message: <web.5a8297021b30403de96a371c0@news.povray.org>
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'
isosurface.png


 

From: And
Subject: Re: Some shapes I found
Date: 13 Feb 2018 03:10:05
Message: <web.5a829c6d1b30403de96a371c0@news.povray.org>
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'
isosurface.png


 

From: William F Pokorny
Subject: Re: Some shapes I found
Date: 13 Feb 2018 10:28:03
Message: <5a830403$1@news.povray.org>
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

From: And
Subject: Re: Some shapes I found
Date: 17 Feb 2018 05:00:01
Message: <web.5a87fc751b30403d191b1fba0@news.povray.org>
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

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.