/extensions/org/mt4jx/input/inputProcessors/componentProcessors/Rotate3DProcessor/RotationPreDraw.java
http://mt4j.googlecode.com/ · Java · 25 lines · 17 code · 7 blank · 1 comment · 0 complexity · 6d609e44af28e1d5c504bc95869c916d MD5 · raw file
- package org.mt4jx.input.inputProcessors.componentProcessors.Rotate3DProcessor;
-
- import org.mt4j.sceneManagement.IPreDrawAction;
- import org.mt4jx.input.gestureAction.Rotate3DAction;
-
- public class RotationPreDraw implements IPreDrawAction {
-
- private Rotate3DAction action;
-
- public RotationPreDraw(Rotate3DAction action)
- {
- this.action = action;
- }
-
- public boolean isLoop() {
- // TODO Auto-generated method stub
- return true;
- }
-
- public void processAction() {
- System.out.println("process predraw aciton");
- action.draw();
- }
-
- }