# godot **Repository Path**: eiDear/godot ## Basic Information - **Project Name**: godot - **Description**: mirror of https://github.com/paetzke/godot - **Primary Language**: Go - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-24 - **Last Updated**: 2021-09-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README * godot Godot is a graphviz wrapper for Go. An example: #+BEGIN_SRC go package main import "github.com/paetzke/godot/godot" func main() { dotter, err := godot.NewDotter(godot.OUT_PDF, godot.GRAPH_DIRECTED, "test.pdf") defer dotter.Close() if err != nil { panic(err) } dotter.SetLink("val", "val") dotter.SetLabel("val", "LABEL!!") dotter.SetLink("val", "val1") dotter.SetLink("val", "val1") dotter.SetLink("val", "val1") dotter.SetLabel("val3", "sLABEL!!") dotter.SetNodeShape("val3", godot.SHAPE_BOX) dotter.SetNodeShape("val34", godot.SHAPE_BOX) } #+END_SRC ** CREDITS Thanks to: - kisielk (https://github.com/kisielk) for fixing a bug Copyright (c) 2013, Friedrich Paetzke (paetzke@fastmail.fm) All rights reserved.