📜  SymPy | Python中的 Polyhedron.pgroup()

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

SymPy | Python中的 Polyhedron.pgroup()

Polyhedron.pgroup() :pgroup()是一个 sympy Python库函数,它返回多面体的排列。

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

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

输出 :

代码 #2:pgroup() 示例 – 八面体

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

输出 :