SymPy | Python中的 Polyhedron.reset()
Polyhedron.reset() :reset()是一个 sympy Python库函数,它将角返回到多面体的原始位置。
Syntax : sympy.combinatorics.Polyhedrons.Polyhedron.reset()
Return : corners to their original positions of the polyhedron
代码 #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)
输出 :
Polyhedron – reset form :
Polyhedron – reset form :
代码 #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)
输出 :
Polyhedron – reset form :
Polyhedron – reset form :