gcode2obj

Crates.iogcode2obj
lib.rsgcode2obj
version
sourcesrc
created_at2024-12-26 18:53:28.365396+00
updated_at2025-04-01 22:05:18.712422+00
description[Wavefront obj] Visualization tool for inspecting a g-code file.
homepagehttps://github.com/martinfrances107/gcode-nom
repositoryhttps://github.com/martinfrances107/gcode-nom
max_upload_size
id1495892
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
martin frances (martinfrances107)

documentation

README

gcodeToObj

Rust 2021 Edition.

crates.io Documentation

A G-code visualization tool written in rust

A nom based parser, outputs a "Wavefront Obj" file which can be imported into blender for visualization.

Both .gcode files and binary .bgcode files are accepted.

Performance

Currently 9.9MByte bgcode file can be processed into a 16MBytes obj file in 1.5secs.

[ See the git repository associated with this project... assets/gear-holder-print-in-place_04n_022mm_pla_mk4_6h49m.bgcode ]

How to use

Pass the gcode file in as 'StdIn' and the program will send the obj file to 'StdOut' :-

cargo run --release -- < ../assets/benchy.gcode > benchy.obj

Binary ".bgcode" files must be passed in by filename :-

## Binary bgcoode files must be passed in as an argument because they are not utf-8 encoded
cargo run --release --  ../assets/both\ parts.bgcode > both.obj

Here the obj files are imported in to blender and processed.

Benchy in Blender Lego bricks

Within blender :-

  1. This obj has been "Imported".
  2. Converted into a "Curve".
  3. Finally a circular bevel object has been applied to make the object solid [ A circle to represent a 0.1mm fibre].

Future work

  • Make this nom-parser a "streaming / zero copy" parser. So only a small fragment of the large files is memory.

  • I have only tested against gcode files that use absolute positioning.

  • I must test with code than uses relative positioning.

Commit count: 123

cargo fmt