文件名称:GmlWriter:写入 GML(图形建模语言)文件
文件大小:16KB
文件格式:ZIP
更新时间:2024-07-18 19:55:59
C++
编写器 写入 GML(图形建模语言)文件。 以下示例创建一个具有四个节点和四个边的有向分层图。 # include " gml_writer.hpp " using namespace gw ; int main () { const char * file = " /home/harry/GmlWriter/test/test.gml " ; GmlWriter g (file, true , true , " MyGraph " ); g. writeNode ( 1 , " foo " ); g. writeNode ( 2 , " 3.14 " ); Shape shape_elipse = Shape::Ellipse; g. writeNode ( 3 , " bar " , shape_elipse); g. writeNode ( 4 , " 4 " );
【文件预览】:
GmlWriter-master
----.gitignore(285B)
----Makefile(703B)
----src()
--------gml_writer.cpp(3KB)
----LICENSE.md(18KB)
----README.md(756B)
----include()
--------gml_writer.hpp(2KB)
----example-output()
--------test.gml(415B)
--------test.jpg(4KB)
----test()
--------test.cpp(619B)