fix sketch saving issue, and make default stroke cap be ROUND

This commit is contained in:
benfry
2005-04-18 23:24:35 +00:00
parent 0e81844912
commit 7da598fb6d
5 changed files with 91 additions and 37 deletions

View File

@@ -425,7 +425,8 @@ public class PGraphics extends PImage implements PConstants {
stroke(0);
strokeWeight(ONE);
strokeCap(SQUARE);
//strokeCap(SQUARE);
strokeCap(ROUND);
strokeJoin(MITER);
background(204);
@@ -2568,7 +2569,7 @@ public class PGraphics extends PImage implements PConstants {
public void spotLight(float red, float green, float blue,
float x, float y, float z,
float nx, float ny, float nz,
float nx, float ny, float nz,
float angle, float concentration) {
depthError("spotLight");
}