POV-Ray : Newsgroups : povray.binaries.images : SCC4 attempt Server Time
6 Aug 2024 16:58:54 EDT (-0400)
  SCC4 attempt (Message 1 to 9 of 9)  
From: Bruno Cabasson
Subject: SCC4 attempt
Date: 27 Nov 2006 09:00:01
Message: <web.456aeea053ca34ef5fba6ef0@news.povray.org>
Hello POVers!

I tried some ideas for the SCC4. Here is a attempt (not my entry, so I can
share it now) with the following (verbose) code:

plane
{
    z,9
    pigment
    {
        checker x+y z
    }
    finish{ambient 1.5}
}
cylinder
{
    z,8*z, .5
    pigment {rgbt 1}
    normal{spiral2 5}
    interior {ior 1.3 dispersion 2 dispersion_samples 99}
}
torus{.7,.2 pigment{rgb 0} scale y/9 rotate 90*x translate z}

    Regards


Post a reply to this message


Attachments:
Download 'ucb.png' (651 KB)

Preview of image 'ucb.png'
ucb.png


 

From: Stephen
Subject: Re: SCC4 attempt
Date: 27 Nov 2006 11:00:01
Message: <web.456b0a9c668dedc1f1cb1e660@news.povray.org>
"Bruno Cabasson" <bru### [at] alcatelaleniaspacefr> wrote:
> Hello POVers!
>
> I tried some ideas for the SCC4. Here is a attempt (not my entry, so I can
> share it now) with the following (verbose) code:
>
> plane
> {
>     z,9
>     pigment
>     {
>         checker x+y z
>     }
>     finish{ambient 1.5}
> }
> cylinder
> {
>     z,8*z, .5
>     pigment {rgbt 1}
>     normal{spiral2 5}
>     interior {ior 1.3 dispersion 2 dispersion_samples 99}
> }
> torus{.7,.2 pigment{rgb 0} scale y/9 rotate 90*x translate z}
>
I like this it is pretty and colourful


By removing the line feeds and extra spaces I got the size down to 244
charters, and by changing the torus to a disc, down to 200 charters. If you

I see the attraction of the contest :-)
disc {
0,z,2,0.4
pigment{rgb 0}
translate z
}

Stephen


Post a reply to this message

From: Bruno Cabasson
Subject: Re: SCC4 attempt
Date: 27 Nov 2006 11:25:01
Message: <web.456b109b668dedc1f5fba6ef0@news.povray.org>
Here is another configuration:

disc {
  z*99,z,40
  pigment {hexagon rotate 90*x}
  finish{ambient 2}
}
sphere
{
    z,.45
    pigment{rgbt 1}
    normal{wood scale .24}
    interior {ior 2 dispersion 2 dispersion_samples 200}
}


Post a reply to this message


Attachments:
Download 'scc4_2.png' (350 KB)

Preview of image 'scc4_2.png'
scc4_2.png


 

From: Charles C
Subject: Re: SCC4 attempt
Date: 27 Nov 2006 13:30:01
Message: <web.456b2e48668dedc12869ae640@news.povray.org>
I think the one you didn't enter (mainly and especially the first one) puts
the ones I DID enter to shame.   Very pretty.


Post a reply to this message

From: Orchid XP v3
Subject: Re: SCC4 attempt
Date: 27 Nov 2006 16:02:54
Message: <456b527e$1@news.povray.org>
Yay! Shiny thing...


Post a reply to this message

From: Alain
Subject: Re: SCC4 attempt
Date: 28 Nov 2006 21:12:21
Message: <456cec85@news.povray.org>
Stephen nous apporta ses lumieres en ce 27/11/2006 10:56:
> "Bruno Cabasson" <bru### [at] alcatelaleniaspacefr> wrote:
>> Hello POVers!

>> I tried some ideas for the SCC4. Here is a attempt (not my entry, so I can
>> share it now) with the following (verbose) code:

>> plane
>> {
>>     z,9
>>     pigment
>>     {
>>         checker x+y z
>>     }
>>     finish{ambient 1.5}
>> }
>> cylinder
>> {
>>     z,8*z, .5
>>     pigment {rgbt 1}
>>     normal{spiral2 5}
>>     interior {ior 1.3 dispersion 2 dispersion_samples 99}
>> }
>> torus{.7,.2 pigment{rgb 0} scale y/9 rotate 90*x translate z}

> I like this it is pretty and colourful


> By removing the line feeds and extra spaces I got the size down to 244
> charters, and by changing the torus to a disc, down to 200 charters. If you

> I see the attraction of the contest :-)
> disc {
> 0,z,2,0.4
> pigment{rgb 0}
> translate z
> }

> Stephen

You can reduce it still further like this:
disc{0,z,2,.4 translate z}// you save another 14 characters
No need for the pigment as the default IS rgb 0!

-- 
Alain
-------------------------------------------------
Always try to be modest, and be proud of it!


Post a reply to this message

From: Bruno Cabasson
Subject: Re: SCC4 attempt
Date: 29 Nov 2006 06:20:00
Message: <web.456d6ccb668dedc1f5fba6ef0@news.povray.org>
Thanks you all for encouragement. This principle of having a pigmented
background with a highly refractive glass with a patterned normal can be
endlessly derived and I found it quite efficient in colors and shape wrt
amount of code!

Here is another variation I did not choose as an entry (but I hesitated
....):

plane
{
    z,9
    pigment
    {
        hexagon rotate 90*x
    }
    finish{ambient 3}
}

union
{
    torus
    {
        .25,.25
        pigment {rgbt 1}
        normal {quilted scale .1}
        interior {ior 5 dispersion 5 dispersion_samples 99}
    }
    torus{.7,.2 scale y/9}
    rotate 90*x
    translate z
}


Alain <ele### [at] netscapenet> wrote:
> Stephen nous apporta ses lumieres en ce 27/11/2006 10:56:
> > "Bruno Cabasson" <bru### [at] alcatelaleniaspacefr> wrote:
> >> Hello POVers!
>
> >> I tried some ideas for the SCC4. Here is a attempt (not my entry, so I can
> >> share it now) with the following (verbose) code:
>
> >> plane
> >> {
> >>     z,9
> >>     pigment
> >>     {
> >>         checker x+y z
> >>     }
> >>     finish{ambient 1.5}
> >> }
> >> cylinder
> >> {
> >>     z,8*z, .5
> >>     pigment {rgbt 1}
> >>     normal{spiral2 5}
> >>     interior {ior 1.3 dispersion 2 dispersion_samples 99}
> >> }
> >> torus{.7,.2 pigment{rgb 0} scale y/9 rotate 90*x translate z}
>
> > I like this it is pretty and colourful
> > I had a look at your code and although I’m no coder…
>
> > By removing the line feeds and extra spaces I got the size down to 244
> > charters, and by changing the torus to a disc, down to 200 charters. If you
> > change the plane’s ambient to 2 you save a further two charters. This is fun
> > I see the attraction of the contest :-)
> > disc {
> > 0,z,2,0.4
> > pigment{rgb 0}
> > translate z
> > }
>
> > Stephen
>
> You can reduce it still further like this:
> disc{0,z,2,.4 translate z}// you save another 14 characters
> No need for the pigment as the default IS rgb 0!
>
> --
> Alain
> -------------------------------------------------
> Always try to be modest, and be proud of it!


Post a reply to this message


Attachments:
Download 'ucb5.jpg' (126 KB)

Preview of image 'ucb5.jpg'
ucb5.jpg


 

From: Stephen
Subject: Re: SCC4 attempt
Date: 29 Nov 2006 08:25:00
Message: <web.456d88fa668dedc1f1cb1e660@news.povray.org>
"Bruno Cabasson" <bru### [at] alcatelaleniaspacefr> wrote:
> Thanks you all for encouragement. This principle of having a pigmented
> background with a highly refractive glass with a patterned normal can be
> endlessly derived and I found it quite efficient in colors and shape wrt
> amount of code!
>
> Here is another variation I did not choose as an entry (but I hesitated
> ....):
>



Stephen


Post a reply to this message

From: Charles C
Subject: Re: SCC4 attempt
Date: 29 Nov 2006 12:00:00
Message: <web.456dbc06668dedc13e9e8de0@news.povray.org>
Earlier on I was thinking in terms of a reflective tube like a kalidascope,
but alas I somehow didn't even do that.  Now you have me wondering why I
didn't.
Charles


Post a reply to this message

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