diff --git a/render/stl.go b/render/stl.go index 2764ed2..50f90d9 100644 --- a/render/stl.go +++ b/render/stl.go @@ -169,9 +169,6 @@ func min(a, b int) int { return b } -func DONOTUSE(r io.Reader) (output []Triangle3, readErr error) { - return readBinarySTL(r) -} func readBinarySTL(r io.Reader) (output []Triangle3, readErr error) { var header stlHeader if err := binary.Read(r, binary.LittleEndian, &header); err != nil {