DotWriter

fun DotWriter(    name: String,     isDirected: Boolean,     charactersPerLine: Int,     accumulator: Appendable,     darkMode: Boolean = true,     copyrightOwner: String = System.getProperty("user.name"))

Construct a new DotWriter.

Parameters

name

The name of the graph.

isDirected

If true, then a directed graph will be generated; otherwise, an undirected graph will be generated.

charactersPerLine

The number of characters to emit per line. Only applies to formatting of block comments.

accumulator

The accumulator for the generated source code.

darkMode

If true, draw with light colors on a dark background.

copyrightOwner

This name is embedded in a copyright claim within the document.