11/29/2016

Culebra + Cocoon





FRACTALS



Culebra::discrete>>convergent






Processing and Culebra

Culebra


Processing T06:

 Processing T21:
 Processing T21 CA-partA:
 Processing T21 CA-partB:

Processing_Import Data



How do we read the data that we exported?
This CSV file we exported contains XYZ codes as many points.
How do we bring these points into processing?




Here are the steps:

1. Global variable: String [ ] data will come from text.
( We can do many operations with text. )

2. Call this string data.

3. Split the data.
( Data is an array that contains lines of text.
Each line of text will represent an entity.
One entity contains three values. 
We have to split the data in order to make variables to x, y, z )

4. Use data to create points.
( We need one for loop that will go from the beginning of the data, get the values from that data, and make points out of it.)

5. Start positioning points in a grid fashion. 



11/28/2016

Culebra Flocking Point-Mesh






Processing_Reference


Where do we find those key words such as Fill, Ellipse, Background, Size, and Smooth? 
Referencing information in the processing website is very important.
Go to the link and you can find out all the commands that processing has.



Take ellipse( ) as an example. It shows an example code and the description.
Syntax allows us to know what kind of information we need to provide for ellipse to work. 
It is useful for us to look for more commands.