Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.21 KB

File metadata and controls

52 lines (30 loc) · 1.21 KB

(Version en Castellano)

Grid of Points Library for Processing 3

This idea/project came after having watch the video Build the Cities from Raven Kwok, and the motivation to learn more about Processing

Example:

import ktxo.art.processing.*;
Grid g1;

void setup() {
  size(400, 400, P3D);
  g1 = new Grid(this, 4, 4, 200, 200);
  g1.move(new PVector(100, 100));
  g1.dump(false);
}


void draw() {
  background(0);
  g1.render();
}

See also examples

SimpleGrid

SimpleGrid3D

SimpleGrid2

SimpleGrid

Movement

Usage of Grid of Points, sync with music

Full video

See more examples here

Installation

  1. Download latest version from Releases
  2. Add the library to Processing, see How to Install a Contributed Library