php3d/stlslice

PHP 7 library for slicing each layer of an STL file

Maintainers

Package info

github.com/fgheorghe/stlslice

pkg:composer/php3d/stlslice

Statistics

Installs: 63

Dependents: 0

Suggesters: 0

Stars: 10

Open Issues: 0

1.1 2016-08-07 11:44 UTC

This package is not auto-updated.

Last update: 2026-03-19 02:09:08 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