Matplotlib рисовать пропорциональный треугольник

Мой рисунок треугольника выглядит однобоким, как мне сделать его пропорциональным?

    points = np.array([[x, 10], [x/2, 10], [x+1/2, np.sqrt(5**2 - 2**2)]])
    pivot = plt.Polygon(points, closed = True)
   

1 ответ

Решение

Если наклонная сторона равна 5, а высота треугольника 2, половина ширины будет sqrt(5**2 + 2**2). Ставим левый угол на позицию x,y, правый угол будет в таком же y и ширина добавлена ​​к x. Центральная точка будет в x плюс половина ширины и y+height:

       import matplotlib.pyplot as plt
import numpy as np

plt.style.use('dark_background')
slanted_side = 5
height = 2
halfwidth = np.sqrt(slanted_side ** 2 - height ** 2)
y = 10

fig, axes = plt.subplots()
# x = self.target_location
x = 3
pivot_left = (x, y)
pivot_right = (x + 2 * halfwidth, y)
pivot_top = (x + halfwidth, y + height)
points = np.array([pivot_left, pivot_right, pivot_top])
pivot = plt.Polygon(points, closed=True)
axes.add_patch(pivot)
axes.set_xlim(0, 20)
axes.set_ylim(0, 20)
axes.set_aspect('equal') # equal distances in x and y directions
plt.show()

htt ps://stackru.com/images/a246b5c3c895263318b8bb4627edf6af5652a8a6.png

Другие вопросы по тегам