MatPlotLib 彩色三角形

发布于 2024-12-05 02:10:21 字数 1432 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

救星 2024-12-12 02:10:21

快速浏览一下 艺术家演示

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.patches as mpatches
fig = plt.figure(figsize=(5,5))
ax = plt.axes([0,0,1,1])
triangle1 = mpatches.Polygon(np.array([[0,1],[1,0],[1,1]]), fc="blue")
triangle2 = mpatches.Polygon(np.array([[-0.1,-1],[-2,-2],[-2,-1]]), fc="red")
ax.add_artist(triangle1)
ax.add_artist(triangle2)
ax.set_xlim(-3, 3)
ax.set_ylim(-3, 3)
plt.show()

三角形

a quick look at artist demo

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.patches as mpatches
fig = plt.figure(figsize=(5,5))
ax = plt.axes([0,0,1,1])
triangle1 = mpatches.Polygon(np.array([[0,1],[1,0],[1,1]]), fc="blue")
triangle2 = mpatches.Polygon(np.array([[-0.1,-1],[-2,-2],[-2,-1]]), fc="red")
ax.add_artist(triangle1)
ax.add_artist(triangle2)
ax.set_xlim(-3, 3)
ax.set_ylim(-3, 3)
plt.show()

triangle

我是男神闪亮亮 2024-12-12 02:10:21

使用您发布的数据:

import matplotlib.pyplot as plt
import matplotlib.patches as patches
import numpy as np
import itertools

fig=plt.figure()
ax=fig.add_subplot(1,1,1)

with open('data') as f:
    for points in zip(*[itertools.ifilter(lambda line: line.strip(),f)]*3):
        points=([tuple(map(float,p.strip().split())) for p in points])
        ax.add_patch(patches.Polygon(points))
ax.autoscale_view()
plt.show()

在此处输入图像描述

Using the data you posted:

import matplotlib.pyplot as plt
import matplotlib.patches as patches
import numpy as np
import itertools

fig=plt.figure()
ax=fig.add_subplot(1,1,1)

with open('data') as f:
    for points in zip(*[itertools.ifilter(lambda line: line.strip(),f)]*3):
        points=([tuple(map(float,p.strip().split())) for p in points])
        ax.add_patch(patches.Polygon(points))
ax.autoscale_view()
plt.show()

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文