Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/monksc/camcam
Given straight lines that form shapes. The library will create gcode that will cut out those shapes.
https://github.com/monksc/camcam
cam cnc cnc-milling cnc-programming gcode gcode-converter gcode-generation rust rust-crate rust-lang rust-library
Last synced: about 1 month ago
JSON representation
Given straight lines that form shapes. The library will create gcode that will cut out those shapes.
- Host: GitHub
- URL: https://github.com/monksc/camcam
- Owner: Monksc
- License: mit
- Created: 2022-10-25T12:06:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-14T14:58:39.000Z (about 1 year ago)
- Last Synced: 2023-12-14T16:05:19.145Z (about 1 year ago)
- Topics: cam, cnc, cnc-milling, cnc-programming, gcode, gcode-converter, gcode-generation, rust, rust-crate, rust-lang, rust-library
- Language: Rust
- Homepage:
- Size: 369 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CamCam
Given straight lines that form shapes. The library will create gcode that will cut out those shapes.
This is a cam software to generate gcode for a cnc router.# Usage
Currenlty its just a libary just add in this line to your Cargo.toml. You can remove the rev if you want a newer version.
```
[dependencies]
camcam = { git = "https://github.com/Monksc/camcam", rev = "3a366bc0cb2b6144ba09e4155058b0b58259b7f1"}
```We have an example of how to use the libary in main.rs.
Eventually if somone wants a command line interface and have it accept a certain file like a .dxf file then we may.
Just ask with an Issue.
To get all the tool path settings we are looking at using a .toml file.# Results
You can view some of the examples produced with this on
[cncsim](https://github.com/Monksc/cncsim) .# Software to view the gcode
You can use https://ncviewer.com/ CNCSimPro and LinuxCNC-sim for testing
Another great option to view the end product is
[cncsim](https://github.com/Monksc/cncsim) .# Contributing
We would love to have people contribute. If you want to send a pull request then I will view it.
A less effort way is putting in an issue with a solution and Ill add it later.