Tentacoli a colori


Un colore piuttosto che nero!
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { hue 30 b 0.75 sat 1 }
   CODA { x 0.5 rotate 5 size 0.95 }
}




Ad ogni chiamata la regola CODA disegna due cerchi, il secondo è più piccolo e più chiaro. Si distinguono le ventose...
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { hue 30 b 0.75 sat 1 }
   CIRCLE { size .5 hue 30 b 1 sat 1 }
   CODA { x 0.5 rotate 5 size 0.95 }
}




Ad ogni chiamata la luminosità è incrementata di 0.1 mentre hue e saturation rimangono costanti
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { hue 30 sat 1}
   CODA { x 0.5 rotate 5 size 0.95 b 0.1 }
}




Ad ogni chiamata la saturazione è incrementata di 0.1 mentre hue e brightness rimangono costanti
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { hue 30 b 1}
   CODA { x 0.5 rotate 5 size 0.95 sat 0.1 }
}




Ad ogni chiamata la tonalità è incrementata di 5 mentre saturation e brightness rimangono costanti
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { sat 1 b 1}
   CODA { x 0.5 rotate 5 size 0.95 hue 5 }
}




Ad ogni chiamata la trasparenza aumenta di 0.1 (parte da 1 e diminuisce...)
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { }
   CODA { x 0.5 rotate 5 size 0.95 alpha -0.1 }
}




Cambiando tutto...
image
startshape TENTACOLI
rule TENTACOLI
{
   CODA { }
   CODA { rotate 45 }
   CODA { rotate 90 }
   CODA { rotate 135 }
   CODA { rotate 180 }
   CODA { rotate 225 }
   CODA { rotate 270 }
   CODA { rotate 315 }
}
rule CODA
{
   CIRCLE { }
   CODA
    {
        x 0.5 rotate 5 size 0.95
        alpha -0.02
        b 0.5
        hue 5
        sat 0.5
    }
}
There are no comments on this page.
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki