switch to record() and recordRaw()

This commit is contained in:
benfry
2005-11-30 17:37:39 +00:00
parent ea132a6d74
commit 95fc189208
5 changed files with 74 additions and 115 deletions

View File

@@ -66,8 +66,8 @@ public class PGraphics extends PImage implements PConstants {
// ........................................................
// used by recordShapesRaw()
public PGraphics rawShapeRecorder;
// used by recordRaw()
public PGraphics recorderRaw;
// ........................................................
@@ -3529,8 +3529,8 @@ public class PGraphics extends PImage implements PConstants {
//////////////////////////////////////////////////////////////
public void recordShapesRaw(PGraphics rawShapeRecorder) {
throw new RuntimeException("recordShapesRaw() not supported " +
public void recordRaw(PGraphics recorderRaw) {
throw new RuntimeException("recordRaw() not supported " +
"by this renderer.");
}
}