如果我知道矩形的坐标,如何使用asciiplotlib在终端中绘制矩形?

时间:2019-06-23 18:27:54

标签: python-3.x terminal ascii opencv3.0 object-detection

我有一个矩形坐标(例如p1,p2,p3,p4),需要使用asciiplotlib python库在终端中绘制矩形

import asciiplotlib as apl
import numpy

x = numpy.linspace(0, 2 * numpy.pi, 10)
y = (some rectangle generator function using coordinates p1,p2,p3,p4)

fig = apl.figure()
fig.plot(x, y, label="data", width=50, height=15)
fig.show()

我有一个矩形坐标,需要使用asciiplotlib python库在终端中绘制该矩形。

我期望的最终结果是它应该在 x-y坐标平面

0 个答案:

没有答案