jdf / peasycam

Dead-simple mouse-driven camera for Processing
http://MrFeinberg.com/peasycam/
Apache License 2.0
116 stars 35 forks source link

Added features to PeasyCam #5

Closed eljeffeg closed 13 years ago

eljeffeg commented 13 years ago

camera.setZoomScale(double scale); // 1.0 by default camera.setRotationScale(double scale); // 1.0 by default camera.setPanScale(double scale); // 1.0 by default double getZoomScale(); double getRotationScale(); double getPanScale();

camera.isMoving(); // returns true or false camera.setPanOnScreenEdge(boolean panOnScreenEdge); // default false

setPanOnScreenEdge was updated to include applet support.

jdf commented 13 years ago

Jeff, there are too many lines changed due to (I'm guessing) different line endings, different indents, etc. Please repair all of that, so I can compare the actual new code to the old code.

eljeffeg commented 13 years ago

Jon, the only one that really did that was the readme. All the others should be fine. The readme just lists the features added and contains no code.

eljeffeg commented 13 years ago

Ok, I see a few with the indention.. I'll take a look.