📜  SymPy | Python中的 Polyhedron.reset()

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

SymPy | Python中的 Polyhedron.reset()

Polyhedron.reset() :reset()是一个 sympy Python库函数,它将角返回到多面体的原始位置。

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

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

输出 :

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

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

输出 :