Open In App

SymPy | Polyhedron.size() in Python

Last Updated : 27 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Polyhedron.size() : size() is a sympy Python library function that returns the count of number of corners of the polyhedra.

Syntax : sympy.combinatorics.Polyhedrons.Polyhedron.size()

Return : count of number of corners of the polyhedron

Code #1 : size() Example – tetrahedron




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


Output :

Polyhedron – size form : 4

Polyhedron – size form : 4

Code #2 : size() Example – octahedron




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


Output :

Polyhedron – size form : 6

Polyhedron – size form : 6



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads