mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
adding some notes
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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?
|
||||
|
||||
Reference in New Issue
Block a user