我有一种描述矩形和它们之间连接的格式。
例如: (rect name width height location_coordinates)
rect b 10 10 0 0
rect f 10 10 0 10
rect k 20 10 0 20
rect c 10 10 10 0
rect g 10 10 10 10
rect e 10 10 20 0
rect d 10 10 20 10
rect a 10 10 20 20
edge b f
edge b g
edge b c
edge f k
edge f g
edge g c
edge k g
edge g a
edge g d
edge g c
edge d e
edge d a
edge d e
edge d k
所以为此我想得到这样的东西:
我可以使用.dot / gnuplot格式绘制类似的东西(或者还有其他一些适合这种情况的格式)吗?
我已经查看了它,但找不到如何在特定位置放置矩形或如何连接矩形中心的方法。
答案 0 :(得分:1)
对于每个矩形:
绘制此文件with lines
。
对于每个边缘:
绘制此文件with lines
。
将它们绘制成with labels
。