Polyhedron.rotate(): rotate() es una función de biblioteca de Python sympy que gira sobre un eje de los poliedros.
Sintaxis: sympy.combinatorics.Polyhedrons.Polyhedron.rotate()
Retorno : rotación sobre un eje de los poliedros
Código # 1: rotate() Ejemplo – tetraedro
# Python code explaining # SymPy.Polyhedron.rotate() # importing SymPy libraries from sympy.combinatorics import Permutation, Cycle from sympy.combinatorics.polyhedron import tetrahedron, octahedron # Using from # sympy.combinatorics.polyhedron.Polyhedron.rotate() # Creating Polyhedron a = tetrahedron.copy() print ("Polyhedron - rotate form : ", a.array_form) # Rotating the axis a.rotate(0) print ("\nPolyhedron - rotate form : ", a.array_form)
Producción :
Poliedro – forma rotativa: [0, 1, 2, 3]
Poliedro – forma rotativa: [0, 2, 3, 1]
Código #2: rotate() Ejemplo – octaedro
# Python code explaining # SymPy.Polyhedron.rotate() # importing SymPy libraries from sympy.combinatorics import Permutation, Cycle from sympy.combinatorics.polyhedron import tetrahedron, octahedron # Using from # sympy.combinatorics.polyhedron.Polyhedron.rotate() # Creating Polyhedron a = octahedron.copy() print ("Polyhedron - rotate form : ", a.array_form) # Rotating the axis a.rotate(0) print ("\nPolyhedron - rotate form : ", a.array_form)
Producción :
Poliedro – forma rotativa: [0, 1, 2, 3, 4, 5]
Poliedro – forma rotativa: [0, 2, 3, 4, 1, 5]
Publicación traducida automáticamente
Artículo escrito por noobestars101 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA