notes, bugs, todos, info about svn stuff, additions to faq

This commit is contained in:
benfry
2005-08-13 17:02:04 +00:00
parent 85e61e6d15
commit cce596c75a
4 changed files with 66 additions and 43 deletions

View File

@@ -3219,6 +3219,26 @@ public class PGraphics3 extends PGraphics {
//////////////////////////////////////////////////////////////
// strokeWeight() doesn't really work properly either,
// but that will be dealt with in some other way.
public void strokeJoin(int join) {
String msg = "strokeJoin() not available with P3D";
throw new RuntimeException(msg);
}
public void strokeCap(int cap) {
String msg = "strokeCap() not available with P3D";
throw new RuntimeException(msg);
}
//////////////////////////////////////////////////////////////