Skip to content

Commit 4692dc9

Browse files
committed
adding some notes
1 parent f89d693 commit 4692dc9

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

core/src/processing/event/TouchEvent.java

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,23 @@
2323
package processing.event;
2424

2525

26+
/*
27+
http://developer.android.com/guide/topics/ui/ui-events.html
28+
http://developer.android.com/reference/android/view/MotionEvent.html
29+
http://developer.apple.com/library/safari/#documentation/UserExperience/Reference/TouchEventClassReference/TouchEvent/TouchEvent.html
30+
http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIGestureRecognizer_Class/Reference/Reference.html#//apple_ref/occ/cl/UIGestureRecognizer
31+
32+
Apple's high-level gesture names:
33+
tap
34+
pinch
35+
rotate
36+
swipe
37+
pan
38+
longpress
39+
*/
2640
public class TouchEvent extends Event {
2741

2842
public TouchEvent(Object nativeObject, long millis, int action, int modifiers) {
2943
super(nativeObject, millis, action, modifiers);
3044
}
31-
}
45+
}

core/todo.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,37 @@ _ double check that new key and mouse events are being addressed correctly
66
hint(OPENGL_ERRORS) should be the opposite to enable the reporting, no?
77

88

9+
_ fillMode(NONZERO) and fillMode(ODD) to replace sold(boolean)?
10+
11+
keeping these public for now
12+
get/setNormal
13+
get/setTextureUV
14+
get/setFill
15+
get/setStroke
16+
-> perhaps these go into their own section?
17+
-> or have their own accessor that returns all params?
18+
19+
trying to remember why primitive was changed to kind? (better name?)
20+
21+
these aren't per-vertex:
22+
get/setStrokeWeight
23+
get/setAmbient
24+
get/setEmissive
25+
get/setShininess
26+
27+
boolean isGL() -> now removed
28+
29+
unapproved (made protected)
30+
static shape copying methods
31+
getTop, getBottom, etc
32+
void solid(boolean)
33+
void setParams()
34+
void setPath()
35+
36+
clenaup
37+
colorCalc() methods added to PShape.. should just be used from PGraphics
38+
39+
940
xml tweaks
1041
_ beginning slash in getChild() threw an NPE
1142
_ do we need a trim() method for XML? or enableWhiteSpace()? or?

0 commit comments

Comments
 (0)