diff --git a/core/src/processing/event/TouchEvent.java b/core/src/processing/event/TouchEvent.java index 50443ca26..a5781c92d 100644 --- a/core/src/processing/event/TouchEvent.java +++ b/core/src/processing/event/TouchEvent.java @@ -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); } -} \ No newline at end of file +} diff --git a/core/todo.txt b/core/todo.txt index c44381a7b..78014e10a 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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?