php3d/stlslice

PHP 7 library for slicing each layer of an STL file

1.1 2016-08-07 11:44 UTC

This package is not auto-updated.

Last update: 2024-04-17 16:54:34 UTC


README

Build Status

Synopsis

This library provides PHP 7 functionality for slicing STL formatted 3D objects, and converting them to SVG or GCODE.

NOTE: GCode conversion is highly experimental - change to suit your needs.

NOTE: Requires bcscale(16);

Set-up

Add this to your composer.json file:

  [...]
  "require": {
      [...]
      "php3d/stlslice": "1.*"
  }

Then run composer:

composer.phar install

Examples

Extract layers:

$layers = (new \php3d\stlslice\STLSlice($stl, 10))->slice();

Convert to SVG:

See stl2svg.php

Convert to GCode (milling machine):

See stl2gcode.php