Package com.intellij.openapi.graph.view

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

Related Classes of com.intellij.openapi.graph.view.LayoutMorpher

Copyright © 2018 www.massapicom. 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.