pdf stuff really starting to work

This commit is contained in:
benfry
2006-01-12 05:10:27 +00:00
parent 11be1683cc
commit 7c12eba22a
6 changed files with 196 additions and 60 deletions

View File

@@ -3799,12 +3799,21 @@ public class PGraphics3 extends PGraphics {
// RAW SHAPE RECORDING
public void recordRaw(PGraphics recorderRaw) {
/*
public void beginRaw(PGraphics recorderRaw) {
this.recorderRaw = recorderRaw;
recorderRaw.beginFrame();
}
public void endRaw() {
if (recorderRaw != null) {
recorderRaw.endFrame();
recorderRaw = null;
}
}
*/
//////////////////////////////////////////////////////////////