Package net.sf.latexdraw.parsers.svg

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


  @Test
  public void testTranslate() {
    SVGMatrix m = new SVGMatrix();
    double tx = 1.4, ty = -0.4;

    m.translate(tx, ty);
    assertEquals(m.getA(), 1., 0.0001);
    assertEquals(m.getB(), 0., 0.0001);
    assertEquals(m.getC(), 0., 0.0001);
    assertEquals(m.getD(), 1., 0.0001);
    assertEquals(m.getE(), tx, 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.