📜  SymPy | Python中的 Polyhedron.rotate()

📅  最后修改于: 2022-05-13 01:55:10.988000             🧑  作者: Mango

SymPy | Python中的 Polyhedron.rotate()

Polyhedron.rotate() : rotate()是一个 sympy Python库函数,它围绕多面体的轴旋转。

代码 #1:rotate() 示例——四面体

# Python code explaining
# SymPy.Polyhedron.rotate()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.polyhedron import tetrahedron, octahedron
  
# Using from 
# sympy.combinatorics.polyhedron.Polyhedron.rotate()
  
# Creating Polyhedron
a = tetrahedron.copy()
  
print ("Polyhedron - rotate form : ", a.array_form)
  
# Rotating the axis
a.rotate(0)
  
print ("\nPolyhedron - rotate form : ", a.array_form)

输出 :

代码 #2:rotate() 示例——八面体

# Python code explaining
# SymPy.Polyhedron.rotate()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.polyhedron import tetrahedron, octahedron
  
# Using from 
# sympy.combinatorics.polyhedron.Polyhedron.rotate()
  
# Creating Polyhedron
a = octahedron.copy()
  
print ("Polyhedron - rotate form : ", a.array_form)
  
# Rotating the axis
a.rotate(0)
  
print ("\nPolyhedron - rotate form : ", a.array_form)

输出 :