https://github.com/hellonico/pjodatime
Jodatime for processing
https://github.com/hellonico/pjodatime
Last synced: 6 months ago
JSON representation
Jodatime for processing
- Host: GitHub
- URL: https://github.com/hellonico/pjodatime
- Owner: hellonico
- License: other
- Created: 2012-08-20T13:55:41.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-08-27T00:35:17.000Z (over 13 years ago)
- Last Synced: 2025-02-17T01:43:22.301Z (about 1 year ago)
- Language: Java
- Size: 777 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
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);
}
```