NEURONAL NET

If you have a design you're proud of, share the cfdg file here. It's also a good place to ask for feedback and collaborate.

Moderators: MtnViewJohn, chris, mtnviewmark

Post Reply
User avatar
LaT3x
Posts: 68
Joined: Wed Jul 06, 2005 3:11 pm
Location: Madrid, Spain

NEURONAL NET

Post by LaT3x »

Hi!...

(use this seeds for good results: BLE, BLK, BLM...)

Code: Select all

startshape NEURONA

// ------------------------------
rule NEURONA
{
  puntoGordo {}
  linea { x 2 }
}

// LINEA ----------
rule linea 0.05
{ 
  puntoFino1 { }
  linea { x 2 r 10}
}
rule linea 0.05
{ 
  puntoFino2 { }
  linea { x 2 r -10}
}
rule linea 0.008
{
  // dividimos la rama
  division { }
}
rule linea 0.00005
{
  // final
  puntoGordo { x 1 }
}

// DIVISION ----------
rule division .5
{
  puntoGordoNegro { }
  linea { r 55 }
  linea {  r -55 }
}
rule division .5
{
  // final
  puntoGordo { x 1 }
}


// PUNTOS ----------
rule puntoFino2 {  CIRCLE {s .25} }
rule puntoFino1 {  CIRCLE {s .5} }
rule puntoGordo 
{  
  CIRCLE {s 2} 
  CIRCLE {s 1.8 b 1} 
}
rule puntoGordoNegro
{  
  CIRCLE {s .75} 
}

Post Reply