Archive for July, 2008
Saturday, July 19th, 2008
libTablet aims at becoming a (cross-platform) Java drawing tablet library that plays nice with Processing.
It gives you easy access to your tablets pressure, tilt and rotational data in your sketches/ Java applications.
Since my most immediate requirement currently is to have it working on Mac OS X, it is yet not really cross-platform.
However the plan is to wrap JTablet on Windows to provide a common interface for easier development/ deployment across these systems.
Releases
first draft, mac os x only
» Tablet-0.1.zip
Source
You can get the latest version via mercurial with:
|
hg clone http://hg.infostuka.org/hg/libTablet/
|
Useage
Simply create a PTablet object before you initialize your sketch, which you can then use to query your tablet for: pressure, tiltX, tiltY, rotation etc.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import processing.opengl.*;
import infostuka.lib.tablet.p5.*;
PTablet tablet;
void setup ()
{
// ATTENTION - new PTablet() HAS to be created before calling size()
tablet = new PTablet(this);
size(800, 600, OPENGL);
}
void draw ()
{
if (mousePressed) {
float brushSize = tablet.pressure * 100f;
System.out.println("TILT " + tablet.tiltX + " " + tablet.tiltY + " ROT " + tablet.rotation + " THETA " + theta);
...
your drawing commands here
...
}
}
|
License
Copyright © Marcus Wendt 2008
This library is licensed under the GNU LGPL
Permalink
Posted in Processing, devices, java, library, opensource, processing.org | Comments Off
Monday, July 7th, 2008
Magnetosphere es un plugin para itunes®, creado por Robert Hodgin utilizando Processing. Funciona como un visualizador reactivo a la música que suena en el reproductor, cosa que hace rato existe, pero éste debe ser uno de los de mejor estética en su respuesta gráfica y dinámica. Tiene la gracia también que presionando las teclas A [...]
Posted in Processing, Software, Sound, arte generativo | Comments Off
Monday, July 7th, 2008
En 1979, el diseñador inglés peter saville diseñó esta carátula para el álbum unknown pleasures de joy division, entre otros del sello inglés factory records (new order).
ahora, casi 30 años después, en este link, y gracias a processing, puedes transformarla según una serie parámetros modificables en un interesante ejercicio gráfico.
peter saville to processing | [...]
Posted in Music, Processing, arte generativo, design, fetish | Comments Off
Monday, July 7th, 2008
Cinema Redux es un proyecto de Brendan Dawes, director creativo de la oficina inglesa de diseño magneticnorth.
Posted in Processing, arte generativo, fetish, media | Comments Off
Thursday, July 3rd, 2008
Posted in Uncategorized | Comments Off
Thursday, July 3rd, 2008
Posted in Uncategorized | Comments Off
Thursday, July 3rd, 2008
Particle Engine Test #1 from
Andy Best on
Vimeo.
First test of my particle engine. Creates random letters when the mouse is clicked. Their velocity is determined by the velocity of the mouse. There is currently support for Gravity, Friction and collision detection with the sides. Blog post: http://www.andybest.net/2008/07/particle-engine/
Cast: Andy Best
Posted in Uncategorized | Comments Off
Thursday, July 3rd, 2008
vehicle study from
iqed on
Vimeo.
Development is decided by the position of objects. It moves more smoothly actually (limitation of memory of my machine).
Cast: iqed
Posted in Uncategorized | Comments Off
Thursday, July 3rd, 2008
Posted in Processing, code driven graphics, experiments | Comments Off
Thursday, July 3rd, 2008
Posted in Uncategorized | Comments Off
Wednesday, July 2nd, 2008
Print Magazine cover design: Gray-Scott reaction diffusion from
postspectacular on
Vimeo.
Full making-of story is here: http://postspectacular.com/process/20080702_printmagcover This is an early sketch for the cover design of the August 2008 issue of Print Magazine, a 3d printed sculpture generated using the Gray-Scott reaction diffusion model. The final sculpture displays (and purely consists of) its entire creation process. 2D Frames of the animation are stacked along the 3rd dimension and form a 3d density volume which can then be turned into a proper mesh using the same algorithm used for visualizing MRI scans (Marching cubes). The sculpture consisted of initially 5.23M triangles which I needed to reduce to 1.9M polygons for reasons of extreme fragility. Also please check the magazine website and related flickr set: http://www.printmag.com/design_articles/building_the_cover/tabid/388/Default.aspx http://www.flickr.com/photos/toxi/sets/72157604724789091/
Cast: postspectacular
Posted in Uncategorized | Comments Off
Wednesday, July 2nd, 2008
Posted in Uncategorized | Comments Off
Wednesday, July 2nd, 2008
Posted in Uncategorized | Comments Off