Polyhedron.corners():corners()是一个sympy Python库函数,它返回多面体的角。
用法:
sympy.combinatorics.Polyhedrons.Polyhedron.corners()
返回:
多面体的角
代码1:corners()示例–四面体
# Python code explaining
# SymPy.Polyhedron.corners()
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.polyhedron import tetrahedron, octahedron
# Using from
# sympy.combinatorics.polyhedron.Polyhedron.corners()
# Creating Polyhedron
a = tetrahedron.copy()
print ("Polyhedron - corners form : ", a.corners)
a.rotate(0)
print ("\nPolyhedron - corners form : ", a.corners)
输出:
Polyhedron – corners form : (0, 1, 2, 3)
Polyhedron – corners form : (0, 2, 3, 1)
代码2:corners()示例–八面体
# Python code explaining
# SymPy.Polyhedron.corners()
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.polyhedron import tetrahedron, octahedron
# Using from
# sympy.combinatorics.polyhedron.Polyhedron.corners()
# Creating Polyhedron
a = octahedron.copy()
print ("Polyhedron - corners form : ", a.corners)
a.rotate(0)
print ("\nPolyhedron - corners form : ", a.corners)
输出:
Polyhedron – corners form : (0, 1, 2, 3, 4, 5)
Polyhedron – corners form : (0, 2, 3, 4, 1, 5)
相关用法
- Python sympy.apart()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python sympy.nP()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python Sympy Permutation.min()用法及代码示例
- Python Sympy Permutation.max()用法及代码示例
- Python sympy.Mod()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 SymPy | Polyhedron.corners() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。