Package net.sf.latexdraw.parsers.svg

Examples of net.sf.latexdraw.parsers.svg.SVGMatrix.scale()


  @Test
  public void testScale() {
    SVGMatrix m = new SVGMatrix();
    double s = 5.877423;

    m.scale(s);
    assertEquals(m.getA(), s, 0.0001);
    assertEquals(m.getB(), 0., 0.0001);
    assertEquals(m.getC(), 0., 0.0001);
    assertEquals(m.getD(), s, 0.0001);
    assertEquals(m.getE(), 0., 0.0001);
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.