ngraph.todot:将ngraph.graph保存为点格式

时间:2024-06-02 03:52:17
【文件属性】:

文件名称:ngraph.todot:将ngraph.graph保存为点格式

文件大小:64KB

文件格式:ZIP

更新时间:2024-06-02 03:52:17

JavaScript

ngraph.todot 将保存为格式。 用法 // Let's say we have a graph with two edges: var graph = require ( 'ngraph.graph' ) ( ) ; graph . addLink ( 1 , 2 ) ; graph . addLink ( 2 , 3 ) ; // Now save it to dot format: var toDot = require ( 'ngraph.todot' ) ; var dotContent = toDot ( graph ) ; 这会将dotContent设置为带有图形的字符串,以点格式描述: digraph G { 1 -> 2 2 -> 3 } 怎么办呢? 多重图形分析软件(例如 , )非常支持dot格式。 您可以轻松地将ngraph.graph转移到您喜欢


【文件预览】:
ngraph.todot-master
----.gitignore(109B)
----package.json(545B)
----package-lock.json(274KB)
----.travis.yml(36B)
----LICENSE(1KB)
----index.js(2KB)
----README.md(2KB)
----test()
--------index.js(3KB)

网友评论