|
|
|
|
|
|
| |
| |
|
|
From: B Gimeno
Subject: a pair of macros with text objects (70+60 KB)
Date: 17 May 2005 14:51:56
Message: <428a3d4c@news.povray.org>
|
|
|
| |
| |
|
|
Hi:
Some months ago I wrote a pair of macros to construct text objects using
blobs and/or boxes, but never feel satisfied with the results. Some
suggestion and/or contribution?
source in p.b.s-f (is not very clear, but take a look if you want)
P.S. postprocessed with photoshop
[spanish]
echenle un vistazo si quieren)
P.S. postprocesado en photoshop
--
B Gimeno
estoeslarealidad
http://usuarios.lycos.es/game2413
light_source{0,1}#macro C(r,p)cylinder{x*-2,x*2,.9
pigment{rgb p}rotate p*90}#end difference{box{-1,1}C
(z,x)C(x,y)C(z,z)pigment{rgb 2}rotate 45 translate z*4}
Post a reply to this message
Attachments:
Download 'melted.jpg' (71 KB)
Download 'dot_text.jpg' (61 KB)
Preview of image 'melted.jpg'
Preview of image 'dot_text.jpg'
|
|
| |
| |
|
|
From: Florian Brucker
Subject: Re: a pair of macros with text objects (70+60 KB)
Date: 17 May 2005 15:13:54
Message: <428a4272@news.povray.org>
|
|
|
| |
| |
|
|
You can find sth. similar in the last example of the following WikiPOV
site: http://povray.tirnalong.com/ow.asp?DropOnSurface
I like your block version, it looks kinda retro.
Florian
--
camera{look_at-y*10location<8,-3,-8>*10}#local a=0;#while(a<999)sphere{
#local _=.01*a-4.99;#local p=a*.01-5;#local c=.01*a-4.995;<sin(p*pi)*5p
*10pow(p,5)*.01>sin(c*c*c*.1)+1pigment{rgb 3}}#local a=a+1;#end
/******** http://www.torfbold.com ******** http://www.imp.org ********/
Post a reply to this message
|
|
| |
| |
|
|
From: JC (Exether)
Subject: Re: a pair of macros with text objects (70+60 KB)
Date: 17 May 2005 16:45:36
Message: <428a57f0$1@news.povray.org>
|
|
|
| |
| |
|
|
The second one reminds me of this:
http://exether.free.fr/irtc/
JC
B. Gimeno wrote:
> Hi:
> Some months ago I wrote a pair of macros to construct text objects using
> blobs and/or boxes, but never feel satisfied with the results. Some
> suggestion and/or contribution?
> source in p.b.s-f (is not very clear, but take a look if you want)
> P.S. postprocessed with photoshop
>
> [spanish]
> echenle un vistazo si quieren)
> P.S. postprocesado en photoshop
> --
> B Gimeno
> estoeslarealidad
> http://usuarios.lycos.es/game2413
> light_source{0,1}#macro C(r,p)cylinder{x*-2,x*2,.9
> pigment{rgb p}rotate p*90}#end difference{box{-1,1}C
> (z,x)C(x,y)C(z,z)pigment{rgb 2}rotate 45 translate z*4}
>
>
>
--
http://sibylone.free.fr
Post a reply to this message
|
|
| |
| |
|
|
From: Lance Birch
Subject: Re: a pair of macros with text objects (70+60 KB)
Date: 18 May 2005 04:19:51
Message: <428afaa7@news.povray.org>
|
|
|
| |
| |
|
|
"Florian Brucker" <tor### [at] torfboldcom> wrote in message
news:428a4272@news.povray.org...
> You can find sth. similar in the last example of the following WikiPOV
> site: http://povray.tirnalong.com/ow.asp?DropOnSurface
>
> I like your block version, it looks kinda retro.
Maybe you're remembering the image that Dan Farmer rendered many years ago of
text made out of spheres and blocks that read "POV-Ray 2.0"... :)
http://www.ccp14.ac.uk/ccp/ccp14/ftp-mirror/pov-ray/pub2/pov-ray/pix/pov/pov2.gif
Lance.
thezone - thezone.firewave.com.au
Post a reply to this message
|
|
| |
| |
|
|
From: Denis Bodor
Subject: Re: a pair of macros with text objects (70+60 KB)
Date: 18 May 2005 06:39:21
Message: <428b1b59@news.povray.org>
|
|
|
| |
| |
|
|
B. Gimeno wrote:
> Hi:
> Some months ago I wrote a pair of macros to construct text objects using
> blobs and/or boxes, but never feel satisfied with the results. Some
> suggestion and/or contribution?
> source in p.b.s-f (is not very clear, but take a look if you want)
> P.S. postprocessed with photoshop
That's remind me one of my Debian's wallpaper inspired by
http://empirium.free.fr/defis/defi003/Full/Exether_03_a.jpg and made with :
#declare swirl = text {
ttf "openlogo2.ttf", "l", 5, 0
rotate x*90
scale <10,0.33,10>
translate <-3,.25,-4>
translate <-0.7,0,0>
}
#declare pochoire1 = merge {
#declare i=0;
#while(i<30000)
#declare posX = SRand(R1)*10;
#declare posZ = SRand(R1)*10;
#declare posY = 0;
#declare vert = rand(R1)/2.5+0.25;
#if(inside (swirl, <posX,posY,posZ>) >= 1.0)
box {
<-0.15,-18,-0.15>,<0.15,0.1,0.15>
scale gros
translate <posX,posY,posZ>
translate <0,vert,0>
}
#end
#declare i=i+1;
#end
}
openlogo2.ttf created from Debian EPS logo with FontForge (font creation
free software available under GNU/Linux).
Post a reply to this message
Attachments:
Download 'debian_glass.jpg' (39 KB)
Preview of image 'debian_glass.jpg'
|
|
| |
| |
|
|
From: Florian Brucker
Subject: Re: a pair of macros with text objects (70+60 KB)
Date: 18 May 2005 12:35:09
Message: <428b6ebd$1@news.povray.org>
|
|
|
| |
| |
|
|
>> I like your block version, it looks kinda retro.
>
> Maybe you're remembering the image that Dan Farmer rendered many years ago of
> text made out of spheres and blocks that read "POV-Ray 2.0"... :)
>
> http://www.ccp14.ac.uk/ccp/ccp14/ftp-mirror/pov-ray/pub2/pov-ray/pix/pov/pov2.gif
Nope, have not been around that long. But thanks for the link, that
directory is full of retro POV images! Very cool.
Florian
--
camera{look_at-y*10location<8,-3,-8>*10}#local a=0;#while(a<999)sphere{
#local _=.01*a-4.99;#local p=a*.01-5;#local c=.01*a-4.995;<sin(p*pi)*5p
*10pow(p,5)*.01>sin(c*c*c*.1)+1pigment{rgb 3}}#local a=a+1;#end
/******** http://www.torfbold.com ******** http://www.imp.org ********/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|