Package java.awt.geom

Examples of java.awt.geom.Area.reset()


  public void test(TestHarness harness)     
  {
    Area area = new Area();
    area.add(new Area(new Rectangle2D.Double(1.0, 1.0, 1.0, 1.0)));
    harness.check(!area.isEmpty());
    area.reset();
    harness.check(area.isEmpty());
  }

}
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.