put necessary api vars from PGraphics3 into PGraphics

This commit is contained in:
benfry
2005-06-08 21:10:52 +00:00
parent 32c5ffa260
commit 9f220a8fbc
6 changed files with 200 additions and 260 deletions

View File

@@ -739,19 +739,19 @@ public class PGraphics2 extends PGraphics {
//////////////////////////////////////////////////////////////
protected void colorTint() {
super.colorTint();
protected void tintFromCalc() {
super.tintFromCalc();
// TODO actually implement tinted images
tintColorObject = new Color(tintColor, true);
}
protected void colorFill() {
super.colorFill();
protected void fillFromCalc() {
super.fillFromCalc();
fillColorObject = new Color(fillColor, true);
}
protected void colorStroke() {
super.colorStroke();
protected void strokeFromCalc() {
super.strokeFromCalc();
strokeColorObject = new Color(strokeColor, true);
}