Closed jacobjoaquin closed 8 years ago
Does it make sense to package the serial, clipping and displayable bits into a processing library of some sort? I'm worried that we have two (three, actually, since tennis for two is still there) implementations of the serial port code, the vector line code, etc.
(the fireworks look pretty good on the vectrex! they are a little slow when the screen is full and might benefit from adding vector sorting to the displayable class)
Vst.vline
to Vst.line
.
Vst.beginShape()
and Vst.endShape()
pushMatrix()
, popMatrix()
, translate()
, scale()
, rotate()
Vst.displayTransit
Vst.rect()
rectMode(CENTER)
and rectMode(CORNER)
Vst.vline()
is now Vst.line()
.color colorNormal = color(0, 80);
color colorBright = color(0);
color colorTransit = color(255, 0, 0);
I'm going to merge this since it doesn't change the processingDemo/
directory and we can check point the progress thus far. I like the idea of overriding line()
, elipse()
, etc and having the entire scene drawn by the Vst
class.