|
|
|
|
|
by samatman
2178 days ago
|
|
graphviz makes graphs, and PlantUML makes UML diagrams: https://en.wikipedia.org/wiki/Unified_Modeling_Language Not being flippant, that's the difference. graphviz/dot is general-purpose and can be configured to produce UML-like diagrams, but that's labor intensive. PlantUML takes text and produces UML diagrams from it. It's configurable... as long as you want UML. If you want something else, reach for graphviz. In my own work, I use dot/graphviz for diagramming abstract syntax trees, while I've used PlantUML a couple times to diagram the layout of structs and to map the high-level relationships between modules in large software projects. org-mode does a very nice job of integrating both of those formats into documents, fyi. |
|