# slicer **Repository Path**: mirrors_fogleman/slicer ## Basic Information - **Project Name**: slicer - **Description**: Fast 3D mesh slicer written in Go. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-07-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # slicer Fast 3D mesh slicer written in Go. Writes slices to grayscale PNG files. ### Install Go First, install Go, set your `GOPATH`, and make sure `$GOPATH/bin` is on your `PATH`. ```bash brew install go export GOPATH="$HOME/go" export PATH="$PATH:$GOPATH/bin" ``` ### Install Slicer ```bash $ go get -u github.com/fogleman/slicer/cmd/slicer ``` ### Example Usage ```bash $ slicer --help # slice model.stl with slices that are 0.1 units thick, rendering PNGs that # cover 100x100 units in size with resolution of 10 pixels per unit $ slicer -s 0.1 -w 100 -h 100 -x 10 model.stl ``` ### Example Slice ![Example](https://i.imgur.com/PWKUt1L.png)