SymPy Python中的Polyhedron.reset()

SymPy Python中的Polyhedron.reset()

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

语法 : sympy.combinatorics.Polyhedrons.Polyhedron.reset()

返回:多面体的各个角落到它们的原始位置

代码 #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 :

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程