An open API service indexing awesome lists of open source software.

https://github.com/hellonico/pjodatime

Jodatime for processing
https://github.com/hellonico/pjodatime

Last synced: 6 months ago
JSON representation

Jodatime for processing

Awesome Lists containing this project

README

          

Making jodatime available to Processing

How to use:
```java
import net.hellonico.jodatime.*;

TimeLibrary time;
PFont font;
void setup() {
size(500,100);
smooth();
frameRate(1);

font = loadFont("Digital-7-30.vlw");
time = new TimeLibrary(this);

textFont(font, 32);
}

void draw() {
background(0);
text(time.getTimeString(), 50, 50);
}
```