Package plotter

Examples of plotter.CountingGraphics


  public void testPaintLeadingNaN() throws InterruptedException, InvocationTargetException {
    add(.05, Double.NaN);
    add(.1, .1);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(2, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here


  public void testPaintTrailingNaN() throws InterruptedException, InvocationTargetException {
    add(.1, .1);
    add(.9, .9);
    add(.95, Double.NaN);
    CountingGraphics g = paint();
    assertEquals(2, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

    add(.1, .1);
    add(.2, .2);
    add(.5, Double.NaN);
    add(.8, .8);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(4, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 39, 160);
    c.require(159, 40, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

    add(.1, .1);
    add(.9, .9);
    add(.95, Double.NaN);
    add(.96, Double.NaN);
    add(.97, Double.NaN);
    CountingGraphics g = paint();
    assertEquals(2, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

  public void testPaintSimpleStep() throws InterruptedException, InvocationTargetException {
    line.setLineMode(LineMode.STEP_YX);
    add(.1, .1);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(3, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 19, 20);
    c.require(19, 20, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

  public void testPaintLeadingNaNStep() throws InterruptedException, InvocationTargetException {
    line.setLineMode(LineMode.STEP_YX);
    add(.05, Double.NaN);
    add(.1, .1);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(3, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 19, 20);
    c.require(19, 20, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

  public void testPaintTrailingNaNStep() throws InterruptedException, InvocationTargetException {
    line.setLineMode(LineMode.STEP_YX);
    add(.1, .1);
    add(.9, .9);
    add(.95, Double.NaN);
    CountingGraphics g = paint();
    assertEquals(3, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 19, 20);
    c.require(19, 20, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

    add(.1, .1);
    add(.2, .2);
    add(.5, Double.NaN);
    add(.8, .8);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(6, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 19, 160);
    c.require(19, 160, 39, 160);
    c.require(159, 40, 159, 20);
    c.require(159, 20, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

  public void testPaintSimpleStepXY() throws InterruptedException, InvocationTargetException {
    line.setLineMode(LineMode.STEP_XY);
    add(.1, .1);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(3, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 179, 180);
    c.require(179, 180, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

  public void testPaintLeadingNaNStepXY() throws InterruptedException, InvocationTargetException {
    line.setLineMode(LineMode.STEP_XY);
    add(.05, Double.NaN);
    add(.1, .1);
    add(.9, .9);
    CountingGraphics g = paint();
    assertEquals(3, g.getPointCount());

    LineChecker c = new LineChecker();
    c.require(19, 180, 179, 180);
    c.require(179, 180, 179, 20);
    c.check(g.getLines());
  }
View Full Code Here

TOP

Related Classes of plotter.CountingGraphics

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.