Package org.newdawn.slick.geom

Examples of org.newdawn.slick.geom.Curve


   * @see org.newdawn.slick.BasicGame#init(org.newdawn.slick.GameContainer)
   */
  public void init(GameContainer container) throws SlickException {
    container.getGraphics().setBackground(Color.white);
   
    curve = new Curve(p2,c2,c1,p1);
    poly = new Polygon();
    poly.addPoint(500,200);
    poly.addPoint(600,200);
    poly.addPoint(700,300);
    poly.addPoint(400,300);
View Full Code Here

TOP

Related Classes of org.newdawn.slick.geom.Curve

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.