Package purrpackagedemo.round

Examples of purrpackagedemo.round.Ellipse


public class StrayEllipseTest extends Assert {

  @Test
  public void testWhatever() {
   
    assertFalse( new Ellipse( Point.ORIGIN, new Point( 1, 1 ), 3 ).contains( new Point( 7, 7 )));
    try {
      Ellipse e = new Ellipse( Point.ORIGIN, null, 1 );
      fail(e.toString());
    } catch (IllegalArgumentException e) {
    }
  }
View Full Code Here

TOP

Related Classes of purrpackagedemo.round.Ellipse

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.