|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I just liked the colors.
Post a reply to this message
Attachments:
Download 'CutBlob.jpg' (53 KB)
Preview of image 'CutBlob.jpg'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Just the colors? It looks really cool to me. Please tell us how you did it.
--
Jonathan.
"Bill DeWitt" <bde### [at] cflrrcom> ha scritto nel messaggio
news:3bbe1458@news.povray.org...
>
> I just liked the colors.
>
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"JRG" <jrg### [at] hotmailcom> wrote in message
news:3bbe1623@news.povray.org...
> Just the colors? It looks really cool to me. Please tell us how you did
it.
Messed with someone else's code from earlier today. Uh.... Mike
Williams, in the message "Cutting in isosurfaces" in povray.general
#declare Cut_Width = 0.1;
#declare Blobbyness = 0.001;
#declare Edge_Sharpness = 6;
#declare Sphere = function {f_sphere(x,y,z,1)} // Sphere
#declare Plane = function {(abs(x)-Cut_Width)} // Double plane
isosurface {
function { (1+Blobbyness) - Blobbyness^Sphere(x,y,z)
+ Blobbyness^(Plane(x,y,z)*Edge_Sharpness)
+ Blobbyness^(Plane(y,x,z)*Edge_Sharpness)
}
max_gradient 3000
contained_by{sphere{0,1.01}}
pigment {rgb 1}
}
I changed it to ...
#include "functions.inc"
#declare Cut_Width = 0.03;
#declare Blobbyness = 0.001;
#declare Edge_Sharpness = 12;
#declare Sphere = function {f_sphere(x,y,z,1)} // Sphere
#declare Plane = function {(abs(x)-Cut_Width)} // Double plane
isosurface {
function { (1+Blobbyness) - Blobbyness^Sphere(x,y,z)
+ Blobbyness^(Plane(x,y,z)*Edge_Sharpness)
+ Blobbyness^(Plane(y,x,z)*Edge_Sharpness)
+ Blobbyness^(Plane(z,x,y)*Edge_Sharpness)
+ Blobbyness^(Plane(x+y,y,z)*Edge_Sharpness)
+ Blobbyness^(Plane(x-y,y,z)*Edge_Sharpness)
+ Blobbyness^(Plane(x+z,y,z)*Edge_Sharpness)
+ Blobbyness^(Plane(x-z,y,z)*Edge_Sharpness)
+ Blobbyness^(Plane(y+z,x,z)*Edge_Sharpness)
+ Blobbyness^(Plane(y-z,x,z)*Edge_Sharpness)
}
max_gradient 3000
contained_by{sphere{0,1.01}}
pigment {onion color_map {
[0.0 rgb x*2.5]
[1.0 rgb < 0.2, 0.2, 0.3 >]
} // end color map
scale 1.07
turbulence 0.125
} // end pigment
//normal { bozo 1 scale 0.05 turbulence 1 }
finish { ambient 0.5 }
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thank you sir!
--
Jonathan.
"Bill DeWitt" <bde### [at] cflrrcom> ha scritto nel messaggio
news:3bbe1800@news.povray.org...
>
> "JRG" <jrg### [at] hotmailcom> wrote in message
> news:3bbe1623@news.povray.org...
> > Just the colors? It looks really cool to me. Please tell us how you did
> it.
>
> Messed with someone else's code from earlier today. Uh.... Mike
> Williams, in the message "Cutting in isosurfaces" in povray.general
>
>
> #declare Cut_Width = 0.1;
> #declare Blobbyness = 0.001;
> #declare Edge_Sharpness = 6;
>
> #declare Sphere = function {f_sphere(x,y,z,1)} // Sphere
> #declare Plane = function {(abs(x)-Cut_Width)} // Double plane
>
> isosurface {
> function { (1+Blobbyness) - Blobbyness^Sphere(x,y,z)
> + Blobbyness^(Plane(x,y,z)*Edge_Sharpness)
> + Blobbyness^(Plane(y,x,z)*Edge_Sharpness)
> }
> max_gradient 3000
> contained_by{sphere{0,1.01}}
> pigment {rgb 1}
> }
>
> I changed it to ...
>
> #include "functions.inc"
>
> #declare Cut_Width = 0.03;
> #declare Blobbyness = 0.001;
> #declare Edge_Sharpness = 12;
>
> #declare Sphere = function {f_sphere(x,y,z,1)} // Sphere
> #declare Plane = function {(abs(x)-Cut_Width)} // Double plane
>
> isosurface {
> function { (1+Blobbyness) - Blobbyness^Sphere(x,y,z)
> + Blobbyness^(Plane(x,y,z)*Edge_Sharpness)
> + Blobbyness^(Plane(y,x,z)*Edge_Sharpness)
> + Blobbyness^(Plane(z,x,y)*Edge_Sharpness)
> + Blobbyness^(Plane(x+y,y,z)*Edge_Sharpness)
> + Blobbyness^(Plane(x-y,y,z)*Edge_Sharpness)
> + Blobbyness^(Plane(x+z,y,z)*Edge_Sharpness)
> + Blobbyness^(Plane(x-z,y,z)*Edge_Sharpness)
> + Blobbyness^(Plane(y+z,x,z)*Edge_Sharpness)
> + Blobbyness^(Plane(y-z,x,z)*Edge_Sharpness)
> }
> max_gradient 3000
> contained_by{sphere{0,1.01}}
> pigment {onion color_map {
> [0.0 rgb x*2.5]
> [1.0 rgb < 0.2, 0.2, 0.3 >]
> } // end color map
> scale 1.07
> turbulence 0.125
> } // end pigment
> //normal { bozo 1 scale 0.05 turbulence 1 }
> finish { ambient 0.5 }
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
very good color and idea!!
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"ahmet oktar" <ahm### [at] yahoocom> wrote in message
news:3bbe4e50@news.povray.org...
>
> very good color and idea!!
When I got home I found that it had burned down somewhat.
Post a reply to this message
Attachments:
Download 'CutBlob02.jpg' (97 KB)
Preview of image 'CutBlob02.jpg'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Fri, 5 Oct 2001 16:12:59 -0400, Bill DeWitt wrote:
>
> I just liked the colors.
>
I love this, my cousins had a rubber ball that looked just like
that.
--
Cheers
Steve email mailto:ste### [at] zeroppsuklinuxnet
%HAV-A-NICEDAY Error not enough coffee 0 pps.
web http://www.zeropps.uklinux.net/
or http://start.at/zero-pps
2:20am up 25 days, 4:36, 1 user, load average: 1.08, 1.06, 1.01
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Don't touch it! you'll get burnt!
Like it .
- Nekar
"Bill DeWitt" <bde### [at] cflrrcom> wrote in message
news:3bbe1458@news.povray.org...
>
> I just liked the colors.
>
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.282 / Virus Database: 150 - Release Date: 2001/09/25
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
After playing all night with radiosity to get the red effect on the floor, I
found I like it better with a little shadowless red light. I did however
find the new "points per -hour-" information display.
Post a reply to this message
Attachments:
Download 'CutBlob04.jpg' (49 KB)
Preview of image 'CutBlob04.jpg'
|
|
| |
| |
|
|
|
|
| |
|
|