Package org.rascalmpl.library.vis.util.vector

Examples of org.rascalmpl.library.vis.util.vector.Rectangle


    return new Rectangle(globalLocation, size);
  }
 
  public Rectangle getRectangleIncludingOuterLines(){
    double hlw = 0.5 * prop.getReal(LINE_WIDTH);
    return new Rectangle(globalLocation.getX() - hlw, globalLocation.getY() -hlw , size.getX() + 2*hlw, size.getY() + 2*hlw);
  }
 
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.vis.util.vector.Rectangle

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.