Package net.sf.latexdraw.glib.models.interfaces.prop

Examples of net.sf.latexdraw.glib.models.interfaces.prop.IStdGridProp


  @Override
  public void copy(final IShape s) {
    super.copy(s);

    if(s instanceof IStdGridProp) {
      final IStdGridProp grid = (IStdGridProp) s;

      gridEndx   = grid.getGridEndX();
      gridEndy   = grid.getGridEndY();
      gridStartx   = grid.getGridStartX();
      gridStarty   = grid.getGridStartY();
      originx   = grid.getOriginX();
      originy   = grid.getOriginY();
      setLabelsSize(grid.getLabelsSize());
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.latexdraw.glib.models.interfaces.prop.IStdGridProp

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.