Package ToolPathWriter

Examples of ToolPathWriter.DXFWriter


  }

  public void makeDXF(PApplet a, String dxfSaveLocation) {
    a.textSize(this.textSize);

    DXFWriter dxf = new DXFWriter(dxfSaveLocation);
    //d.beginRaw(a.DXF, dxfSaveLocation);

    dxf.scale(dxf_pixels_per_mm);

    this.pages.renderToPlotter(dxf);

    dxf.close();
    //dxf.endDraw();
  }
View Full Code Here

TOP

Related Classes of ToolPathWriter.DXFWriter

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.