Package net.edzard.kinetic

Examples of net.edzard.kinetic.Vector2d


    stage.add(layer);
  }

  public void testCreationZOrder() {
    for (int i=0; i < 3; ++i) {
      Circle c = Kinetic.createCircle(new Vector2d(10,10), 5);
      layer.add(c);
      assertEquals(i, c.getZIndex())
    }
  } 
View Full Code Here

TOP

Related Classes of net.edzard.kinetic.Vector2d

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.