]> gerrit.simantics Code Review - simantics/3d.git/blobdiff - org.simantics.g3d/src/org/simantics/proconf/g3d/animation/TestAnimationController.java
Removing ancient 3d framework
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / proconf / g3d / animation / TestAnimationController.java
diff --git a/org.simantics.g3d/src/org/simantics/proconf/g3d/animation/TestAnimationController.java b/org.simantics.g3d/src/org/simantics/proconf/g3d/animation/TestAnimationController.java
deleted file mode 100644 (file)
index a6ae770..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*******************************************************************************\r
- * Copyright (c) 2007- VTT Technical Research Centre of Finland.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.proconf.g3d.animation;\r
-\r
-import java.util.ArrayList;\r
-import java.util.List;\r
-\r
-import org.simantics.db.Graph;\r
-\r
-public class TestAnimationController implements AnimationController {\r
-       List<Animatable> animatables = new ArrayList<Animatable>();\r
-       \r
-       private double d = 0.0;\r
-    private double delta = 0.01;\r
-    \r
-       public void addAnimatable(Animatable animatable) {\r
-               animatables.add(animatable);\r
-               \r
-       }\r
-       \r
-       public void setAnimatable(Animatable animatable) {\r
-               animatables.clear();\r
-               animatables.add(animatable);\r
-               \r
-       }\r
-       \r
-       public void updateAnimation(Graph graph, double frameTime) {\r
-               d += delta;\r
-        if (d > 1.0) {\r
-            d = 1.0;\r
-            delta = -delta;\r
-        } else if (d < 0.0) {\r
-            delta = -delta;\r
-            d = 0.0;\r
-        }\r
-        for (Animatable a : animatables)\r
-            a.animate(d,frameTime);\r
-       }\r
-       \r
-       public void dispose() {\r
-               \r
-       }\r
-       \r
-       \r
-       \r
-\r
-}\r