An open API service indexing awesome lists of open source software.

https://github.com/dkarter/stl_parser

👓 STL File Parser in Elixir using :leex and :yecc
https://github.com/dkarter/stl_parser

3d-printing elixir parser stl tokenizer

Last synced: about 2 months ago
JSON representation

👓 STL File Parser in Elixir using :leex and :yecc

Awesome Lists containing this project

README

          

# StlParser

Parses ASCII STL files into Elixir structs uses Erlang's built-in :leex and
:yecc modules for tokenizing and creating an AST.

## Usage

```elixir
"./sample_files/DuckCallReed.stl"
|> File.read!()
|> StlParser.parse_ascii()
```