Categorygithub.com/vibridi/graphify
modulepackage
0.1.0
Repository: https://github.com/vibridi/graphify.git
Documentation: pkg.go.dev

# README

graphify

This repository contains visualization tools for github.com/nulab/autog.

SVG

Draws autog's graph.Layout to an SVG file. Example usage:

package main

import (
	"os"

	"github.com/nulab/autog"
	"github.com/vibridi/graphify"
)

func main() {
	layout := autog.Layout(/* args */)

	f, err := os.Create("output.svg")
	if err != nil {
		// handle error
    }
	graphify.DrawSVG(layout, f)
}

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Currently this option does nothing because autog's output layout doesn't distinguish virtual nodes from regular nodes.
No description provided by the author

# Type aliases

No description provided by the author
No description provided by the author