Поверните файл STL в Matplotlib 3D - PullRequest
0 голосов
/ 17 апреля 2020

Я использую numpy -stl для открытия файла STL в сюжете. Это открытый файл STL. Но у меня есть проблема. Я хочу повернуть STL-файл на графике, как показано на рисунке ниже.

image

код здесь

from stl import mesh
from mpl_toolkits import mplot3d
from matplotlib import pyplot
from math import sin,cos,pi
import numpy as np

# Create a new plot
figure = pyplot.figure()
axes = mplot3d.Axes3D(figure)

m1 = mesh.Mesh.from_file('filea.stl')
axes.add_collection3d(mplot3d.art3d.Poly3DCollection(m1.vectors))

# Auto scale to the mesh size
scale = m1.points.flatten()
axes.auto_scale_xyz(scale-10, scale+10, scale)

# Show the plot to the screen
pyplot.show()
...