當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Sympy Polyhedron.faces()用法及代碼示例


Polyhedron.faces():faces()是一個sympy Python庫函數,它返回多麵體的麵。

用法: sympy.combinatorics.Polyhedrons.Polyhedron.faces()

返回:多麵體的麵孔。


代碼1:faces()示例–四麵體

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

輸出:

Polyhedron – faces form : {(0, 1, 2), (0, 1, 3), (0, 2, 3), (1, 2, 3)}

Polyhedron – faces form : {(0, 1, 2), (0, 1, 3), (0, 2, 3), (1, 2, 3)}

代碼2:faces()示例–八麵體

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

輸出:

Polyhedron – faces form : {(0, 1, 2), (0, 1, 4), (0, 2, 3), (0, 3, 4), (1, 2, 5), (1, 4, 5), (2, 3, 5), (3, 4, 5)}

Polyhedron – faces form : {(0, 1, 2), (0, 1, 4), (0, 2, 3), (0, 3, 4), (1, 2, 5), (1, 4, 5), (2, 3, 5), (3, 4, 5)}



相關用法


注:本文由純淨天空篩選整理自noobestars101大神的英文原創作品 SymPy | Polyhedron.faces() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。