adding some notes

This commit is contained in:
benfry
2012-09-08 12:39:42 +00:00
parent 377b1314eb
commit 56a4d08912
2 changed files with 46 additions and 1 deletions
+15 -1
View File
@@ -23,9 +23,23 @@
package processing.event;
/*
http://developer.android.com/guide/topics/ui/ui-events.html
http://developer.android.com/reference/android/view/MotionEvent.html
http://developer.apple.com/library/safari/#documentation/UserExperience/Reference/TouchEventClassReference/TouchEvent/TouchEvent.html
http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIGestureRecognizer_Class/Reference/Reference.html#//apple_ref/occ/cl/UIGestureRecognizer
Apple's high-level gesture names:
tap
pinch
rotate
swipe
pan
longpress
*/
public class TouchEvent extends Event {
public TouchEvent(Object nativeObject, long millis, int action, int modifiers) {
super(nativeObject, millis, action, modifiers);
}
}
}
+31
View File
@@ -6,6 +6,37 @@ _ double check that new key and mouse events are being addressed correctly
hint(OPENGL_ERRORS) should be the opposite to enable the reporting, no?
_ fillMode(NONZERO) and fillMode(ODD) to replace sold(boolean)?
keeping these public for now
get/setNormal
get/setTextureUV
get/setFill
get/setStroke
-> perhaps these go into their own section?
-> or have their own accessor that returns all params?
trying to remember why primitive was changed to kind? (better name?)
these aren't per-vertex:
get/setStrokeWeight
get/setAmbient
get/setEmissive
get/setShininess
boolean isGL() -> now removed
unapproved (made protected)
static shape copying methods
getTop, getBottom, etc
void solid(boolean)
void setParams()
void setPath()
clenaup
colorCalc() methods added to PShape.. should just be used from PGraphics
xml tweaks
_ beginning slash in getChild() threw an NPE
_ do we need a trim() method for XML? or enableWhiteSpace()? or?