Examples of LayoutMorpher


Examples of com.intellij.openapi.graph.view.LayoutMorpher

    } else {
      // with animation
      GraphLayout layout = GraphManager.getGraphManager().createBufferedLayouter(layouter).calcLayout(view.getGraph2D());


      LayoutMorpher morpher = GraphManager.getGraphManager().createLayoutMorpher(view, layout);
      morpher.setPreferredDuration(800);
      morpher.setKeepZoomFactor(true);

      final AnimationPlayer player = GraphManager.getGraphManager().createAnimationPlayer();
      player.addAnimationListener(view);
      player.setFps(1200);
      player.animate(AnimationFactory.Statics.createEasedAnimation(morpher));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.