forked from nmsl1993/ProcessingGcodeViewer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreadme.txt
More file actions
21 lines (17 loc) · 931 Bytes
/
readme.txt
File metadata and controls
21 lines (17 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ProcessingGCodeViewer - a tool to help you see what's going on in your gcode
Kudos to Noah Levy for starting this project.
ProcessingGCodeViewer is a Java Swing + Processing project intended for use by
CNCers (I come from a RepRap & descendants background, so it's mostly aimed at
extrusion right now.)
The main goal is to make this easily hackable, because you never know what it
is you're going to need to see until you can't see it.
quick tour:
src/
gcodeviewer/ The main classes in the application: our PApplet and our JFrame
parsers/ Parsers take Gcode and produce GCodeEvents
toolpath/ the GCodeEvent interface and a GCodeEvent collection
events/ The GCodeEvents
utils/ Useful data structures
visualizers/ Visualizers take GCodeEvents and draw stuff
replicatorg/ This is stuff I ripped straight outta ReplicatorG
(github.com/makerbot/ReplicatorG) with some minor changes