POV-Ray : Newsgroups : povray.general : another sig (mp) Server Time
8 Aug 2024 01:13:05 EDT (-0400)
  another sig (mp) (Message 1 to 7 of 7)  
From: Tom Melly
Subject: another sig (mp)
Date: 9 May 2001 11:24:48
Message: <3af96140$1@news.povray.org>
#version unofficial MegaPov.6;#init_3d_spline{"A",<2,0>,<2,5>,<0,2>,<4,3>,
<3,2>,<5,2>,<4,3>,<6,3>,<6,2>,<6,3>,<7,2>,<8,3>,<8,2>}#macro C(D)$B=0;
#while(B<1)sphere{eval_3d_spline("A",B),D translate z*25}$B=B+.002;
#end#end union{C(.1)pigment{blue.9}finish{ambient.9}}merge{C(.5)
pigment{rgbt.9}interior{media{emission blue.7}}hollow}//TM

--
"To stop children being afraid of the dark, try to fill their daylight hours
with as much terror as possible"
www.tomandlu.co.uk


Post a reply to this message

From: Wlodzimierz ABX Skiba
Subject: Re: another sig (mp)
Date: 9 May 2001 12:09:42
Message: <3af96bc6@news.povray.org>
Tom Melly wrote in message <3af96140$1@news.povray.org>...
> --
> "To stop children being afraid of the dark, try to fill their daylight hours
> with as much terror as possible"
> www.tomandlu.co.uk

what kind renderer should I use with such sig ? internet browser ? ;-)

ok. now notes:
1. why "A" ? just "" for name of spline
2. 2*x instead of <2,0>
3. 2*y instead of <0,2>
4. B)D instead of B),D

--
#macro Sig(A,B,X)_(A,B)_(B,X)_(X,A)#end#macro _(A,B)cylinder{<A.x,A.y,3>,<B.u,
B.v,3>.1,9}#end global_settings{max_trace_level 9}light_source{0 1}camera{up y
*4right-3*x}blob{_(<3,1>,<1,-5>)_(<2,-2>,<4,-2>)Sig(x,<-1,1.5>,<1,3>)_(z-1,z-4
)pigment{rgb 1}}box{-3 3pigment{rgb 0}finish{reflection 1}hollow} // POV-Ray31


Post a reply to this message

From: Tom Melly
Subject: Re: another sig (mp)
Date: 9 May 2001 12:37:56
Message: <3af97264$1@news.povray.org>
"Wlodzimierz ABX Skiba" <abx### [at] abxartpl> wrote in message
news:3af96bc6@news.povray.org...
>
> ok. now notes:
> 1. why "A" ? just "" for name of spline
> 2. 2*x instead of <2,0>
> 3. 2*y instead of <0,2>
> 4. B)D instead of B),D
>

Thanks - new version with your suggestions and glows:

#version unofficial MegaPov.6;#init_3d_spline{"",x*2,<2,5>,y*2,<4,3>,<3,2>,
<5,2>,<4,3>,<6,3>,<6,2>,<6,3>,<7,2>,<8,3>,<8,2>}#macro B(C,D)$A=0;#while
(A<1)glow{type 0location z*25size C radius 100fade_power 3color D
translate eval_3d_spline("",A)}$A=A+.002;#end#end B(.05,red.9)B(.1,blue.9)


Post a reply to this message

From: Tek
Subject: Re: another sig (mp)
Date: 9 May 2001 14:04:41
Message: <3af986b9@news.povray.org>
Tom Melly <tom### [at] tomandlucouk> wrote in message
news:3af97264$1@news.povray.org...
> #version unofficial MegaPov.6;#init_3d_spline{"",x*2,<2,5>,y*2,<4,3>,<3,2>,
> <5,2>,<4,3>,<6,3>,<6,2>,<6,3>,<7,2>,<8,3>,<8,2>}#macro B(C,D)$A=0;#while
> (A<1)glow{type 0location z*25size C radius 100fade_power 3color D
> translate eval_3d_spline("",A)}$A=A+.002;#end#end B(.05,red.9)B(.1,blue.9)
>
>

That looks nice. A bit 1980's, but in a good way :)

--
Tek


Post a reply to this message

From: Warp
Subject: Re: another sig (mp)
Date: 10 May 2001 05:45:00
Message: <3afa631c@news.povray.org>
Tom Melly <tom### [at] tomandlucouk> wrote:
: #version unofficial MegaPov.6;#init_3d_spline{"",x*2,<2,5>,y*2,<4,3>,<3,2>,
: <5,2>,<4,3>,<6,3>,<6,2>,<6,3>,<7,2>,<8,3>,<8,2>}#macro B(C,D)$A=0;#while
: (A<1)glow{type 0location z*25size C radius 100fade_power 3color D
: translate eval_3d_spline("",A)}$A=A+.002;#end#end B(.05,red.9)B(.1,blue.9)

  The sig is quite small and displaced.
  Also requiring megapov is not necessary the best way in my personal
opinion. Your sig will not work with any official povray (not even 3.5)
and not everyone has megapov...


-- 
#macro N(D,I)#if(I<6)cylinder{M()#local D[I]=div(D[I],104);M().5,2pigment{
rgb M()}}N(D,(D[I]>99?I:I+1))#end#end#macro M()<mod(D[I],13)-6,mod(div(D[I
],13),8)-3,10>#end blob{N(array[6]{11117333955,
7382340,3358,3900569407,970,4254934330},0)}//                     - Warp -


Post a reply to this message

From: Tom Melly
Subject: Re: another sig (mp)
Date: 10 May 2001 06:02:35
Message: <3afa673b@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:3afa631c@news.povray.org...
>
>   The sig is quite small and displaced.

Now you're getting personal.


Post a reply to this message

From: Tom Melly
Subject: Re: another sig (mp)
Date: 10 May 2001 07:21:13
Message: <3afa79a9@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:3afa631c@news.povray.org...
>
>   The sig is quite small and displaced.
>   Also requiring megapov is not necessary the best way in my personal
> opinion. Your sig will not work with any official povray (not even 3.5)
> and not everyone has megapov...
>

How about this one? (look, ma, no spaces!)

#macro A(B,C)light_source{B+z*-9C}#end
camera{location-9*z}plane{-z,-9pigment{rgb.9}}triangle{y*2,-x,x}
A(x*-7,blue.9)A(x*-4,blue.9)A(<2,-4,0>,red.9)A(<-2,-4,0>,red.9)//TM


Post a reply to this message

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