This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"children": [ | |
{ | |
"children": [ | |
{ | |
"children": [ | |
{ | |
"valueString": "dark", | |
"children": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.krab.lazy.*; | |
LazyGui gui; | |
String[] monthNames = new String[]{ | |
"January", | |
"February", | |
"March", | |
"April", | |
"May", | |
"June", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.krab.lazy.*; | |
LazyGui gui; | |
PGraphics pg; | |
float t; | |
float phase; | |
float lightPhase; | |
boolean growing; | |
float r; | |
float angle0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float count = 10; | |
float step = 40; | |
float xPos = 400; | |
PGraphics gradient; | |
void setup() { | |
size(800, 600, P2D); | |
createGradient(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.krab.lazy.*; | |
LazyGui gui; | |
PGraphics noiseOverlay; | |
void setup() { | |
size(800, 800, P2D); | |
gui = new LazyGui(this, new LazyGuiSettings() | |
.setLoadLatestSaveOnStartup(true) | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ch.bildspur.postfx.builder.*; | |
import ch.bildspur.postfx.pass.*; | |
import ch.bildspur.postfx.*; | |
import org.gicentre.handy.*; | |
import com.krab.lazy.*; | |
PostFX fx; | |
LazyGui gui; | |
HandyRenderer hr; | |
PImage img; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int bgTop = 20; | |
int bgBot = 230; | |
PImage tex; | |
float sx, sy; | |
PMatrix3D mouseRotation = new PMatrix3D(); | |
void mouseRotate() { | |
float x = mouseX - pmouseX; | |
float y = mouseY - pmouseY; | |
float drag = 0.98; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float prevX = 400; | |
float prevY = 400; | |
float dir = 0; | |
float off; | |
int imgSize = 120; | |
PImage img; | |
float bgColor = 30; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
size(640, 640, P2D); | |
smooth(8); | |
strokeCap(SQUARE); | |
} | |
void draw() { | |
background(100); | |
translate(width/2, height/2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.krab.lazy.*; | |
LazyGui gui; | |
long clickStartedMillis = -1; | |
String currentTime; | |
String endTime = ""; | |
PFont bigFont, smallFont; |
NewerOlder