from numpy import array
from circpacker.basegeom import Triangle
coords = array([(2, 1), (2, 8), (7, 1)])
triangle = Triangle(coords)
triangle.plot()