POV-Ray : Newsgroups : povray.binaries.images : lace pattern Server Time
12 Aug 2024 03:27:31 EDT (-0400)
  lace pattern (Message 5 to 14 of 14)  
<<< Previous 4 Messages Goto Initial 10 Messages
From: Marc Champagne
Subject: Re: lace pattern
Date: 2 Jan 2004 21:45:45
Message: <Xns9464DD5DF8C4DPOVMIKA@204.213.191.226>
"Tek" <tek### [at] evilsuperbraincom> wrote in
news:3ff5b4c9@news.povray.org: 

> I was just messing around with repeating patterns and came
> up with this: 
> 
> #declare fA = 18; //change this from 0 - 360 to get various
> different patterns 
> 
> pigment {
>   granite colour_map { [.1 rgb 1][.9 rgb 0] }
> 
>   #local nCount = 0;
>   #while ( nCount < 10 )
>     rotate -fA*z
>     warp { repeat y flip y }
>     #local nCount = nCount + 1;
>   #end
> }
> 
> It could be good for lace effects and carpet patterns.
> 

POV broidery... Grandma would be proud of you.

-- 
Marc Champagne
marcch.AT.videoSPAMNOTtron.DOT.ca.invalid
Montreal, Canada


Post a reply to this message

From: Jim Charter
Subject: Re: lace pattern
Date: 2 Jan 2004 21:53:36
Message: <3ff62eb0$1@news.povray.org>
Tek wrote:

> 
> It could be good for lace effects and carpet patterns.
> 
> 
Makes me think Nanotech


Post a reply to this message

From: Jaime Vives Piqueres
Subject: Re: lace pattern
Date: 3 Jan 2004 10:04:57
Message: <3ff6da19@news.povray.org>
Tek wrote:
> I was just messing around with repeating patterns and came up with this:
 > [...]

   Tek, this is just great. I'm writing a "ceramic tile generator" 
macro, and my method to mirror the pattern really sucked... your method 
is much more elegant and useful, and produces much nicer results:

   http://www.ignorancia.org/images/tests/azulejos3a.jpg
   http://www.ignorancia.org/images/tests/azulejos3b.jpg
   http://www.ignorancia.org/images/tests/azulejos3c.jpg
   http://www.ignorancia.org/images/tests/azulejos3d.jpg
   http://www.ignorancia.org/images/tests/azulejos3e.jpg
   http://www.ignorancia.org/images/tests/azulejos3f.jpg

   These are a few of the endless posibilities. The macro consists on 
some trig functions used as pigments with carefully-crafted color maps, 
and using your "rotated warps" effect for the repetition around z.

   Many thanks for sharing such discovery: it was a beautiful new year 
present!

--
Jaime


Post a reply to this message

From: Florian Brucker
Subject: Re: lace pattern
Date: 3 Jan 2004 10:35:27
Message: <3ff6e13f@news.povray.org>
>   http://www.ignorancia.org/images/tests/azulejos3a.jpg
>   http://www.ignorancia.org/images/tests/azulejos3b.jpg
>   http://www.ignorancia.org/images/tests/azulejos3c.jpg
>   http://www.ignorancia.org/images/tests/azulejos3d.jpg
>   http://www.ignorancia.org/images/tests/azulejos3e.jpg
>   http://www.ignorancia.org/images/tests/azulejos3f.jpg

Great Work!

Florian


Post a reply to this message

From: Mick Hazelgrove
Subject: Re: lace pattern
Date: 3 Jan 2004 11:25:19
Message: <3ff6ecef@news.povray.org>
Great Stuff - Both of you.

You should sell the code to tile manfacturers!

Mick

"Jaime Vives Piqueres" <jai### [at] ignoranciaorg> wrote in message
news:3ff6da19@news.povray.org...
> Tek wrote:
> > I was just messing around with repeating patterns and came up with this:
>  > [...]
>
>    Tek, this is just great. I'm writing a "ceramic tile generator"
> macro, and my method to mirror the pattern really sucked... your method
> is much more elegant and useful, and produces much nicer results:
>
>    http://www.ignorancia.org/images/tests/azulejos3a.jpg
>    http://www.ignorancia.org/images/tests/azulejos3b.jpg
>    http://www.ignorancia.org/images/tests/azulejos3c.jpg
>    http://www.ignorancia.org/images/tests/azulejos3d.jpg
>    http://www.ignorancia.org/images/tests/azulejos3e.jpg
>    http://www.ignorancia.org/images/tests/azulejos3f.jpg
>
>    These are a few of the endless posibilities. The macro consists on
> some trig functions used as pigments with carefully-crafted color maps,
> and using your "rotated warps" effect for the repetition around z.
>
>    Many thanks for sharing such discovery: it was a beautiful new year
> present!
>
> --
> Jaime
>


Post a reply to this message

From: Samuel Benge
Subject: Re: lace pattern
Date: 3 Jan 2004 12:36:11
Message: <3FF6FD8C.40103@hotmail.com>
Good job, Tek! This should work nicely with the crackle and leopard 
patterns, too.

Tek wrote:

> I was just messing around with repeating patterns and came up with this:
> 
> #declare fA = 18; //change this from 0 - 360 to get various different patterns
> 
> pigment {
>   granite colour_map { [.1 rgb 1][.9 rgb 0] }
> 
>   #local nCount = 0;
>   #while ( nCount < 10 )
>     rotate -fA*z
>     warp { repeat y flip y }
>     #local nCount = nCount + 1;
>   #end
> }
> 
> It could be good for lace effects and carpet patterns.
> 
> 


-- 
Samuel Benge

stb### [at] hotmailcom
See my website@: http://www.goldrush.com/~abenge/Top/index.html


Post a reply to this message

From: PoD
Subject: Re: lace pattern
Date: 3 Jan 2004 19:15:28
Message: <pan.2004.01.04.00.15.28.486101@internode.on.net>
On Fri, 02 Jan 2004 18:14:17 +0000, Tek wrote:

> I was just messing around with repeating patterns and came up with this:
> 

Hehe reminds me of Fractint.


Post a reply to this message

From: Tek
Subject: Re: lace pattern
Date: 3 Jan 2004 22:40:15
Message: <3ff78b1f@news.povray.org>
Those are some nice patterns! glad to be of some assistance :)

-- 
Tek
www.evilsuperbrain.com

"Jaime Vives Piqueres" <jai### [at] ignoranciaorg> wrote in message
news:3ff6da19@news.povray.org...
> Tek wrote:
> > I was just messing around with repeating patterns and came up with this:
>  > [...]
>
>    Tek, this is just great. I'm writing a "ceramic tile generator"
> macro, and my method to mirror the pattern really sucked... your method
> is much more elegant and useful, and produces much nicer results:
>
>    http://www.ignorancia.org/images/tests/azulejos3a.jpg
>    http://www.ignorancia.org/images/tests/azulejos3b.jpg
>    http://www.ignorancia.org/images/tests/azulejos3c.jpg
>    http://www.ignorancia.org/images/tests/azulejos3d.jpg
>    http://www.ignorancia.org/images/tests/azulejos3e.jpg
>    http://www.ignorancia.org/images/tests/azulejos3f.jpg
>
>    These are a few of the endless posibilities. The macro consists on
> some trig functions used as pigments with carefully-crafted color maps,
> and using your "rotated warps" effect for the repetition around z.
>
>    Many thanks for sharing such discovery: it was a beautiful new year
> present!
>
> --
> Jaime
>


Post a reply to this message

From: Tek
Subject: Re: lace pattern
Date: 3 Jan 2004 22:41:11
Message: <3ff78b57$1@news.povray.org>
Yeah crackle looks great with it, though I couldn't get any nice results from
leopard.

-- 
Tek
www.evilsuperbrain.com

"Samuel Benge" <sbe### [at] hotmailcom> wrote in message
news:3FF### [at] hotmailcom...
> Good job, Tek! This should work nicely with the crackle and leopard
> patterns, too.
>
> Tek wrote:
>
> > I was just messing around with repeating patterns and came up with this:
> >
> > #declare fA = 18; //change this from 0 - 360 to get various different
patterns
> >
> > pigment {
> >   granite colour_map { [.1 rgb 1][.9 rgb 0] }
> >
> >   #local nCount = 0;
> >   #while ( nCount < 10 )
> >     rotate -fA*z
> >     warp { repeat y flip y }
> >     #local nCount = nCount + 1;
> >   #end
> > }
> >
> > It could be good for lace effects and carpet patterns.
> >
> >
>
>
> -- 
> Samuel Benge
>
> stb### [at] hotmailcom
> See my website@: http://www.goldrush.com/~abenge/Top/index.html
>


Post a reply to this message

From: Anonymous
Subject: Re: lace pattern
Date: 5 Jan 2004 20:07:36
Message: <3ffa0a58$1@news.povray.org>
"Tek" <tek### [at] evilsuperbraincom> wrote

> I was just messing around with repeating patterns and came up with this:
>
> #declare fA = 18; //change this from 0 - 360 to get various different
patterns
>
> pigment {
>   granite colour_map { [.1 rgb 1][.9 rgb 0] }
>
>   #local nCount = 0;
>   #while ( nCount < 10 )
>     rotate -fA*z
>     warp { repeat y flip y }
>     #local nCount = nCount + 1;
>   #end
> }

Very very nice! But to get the "right" colors:

...
granite colour_map { [.1 rgb 10] [.6 rgb <6,0,0>]  [.7 rgb 0] [.9 rgb -6] }
...

:)


Post a reply to this message

<<< Previous 4 Messages Goto Initial 10 Messages

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