For example a Point shape can have a pointed left and right edge be pointed. <img width="239" alt="Screen Shot 2019-05-04 at 4 35 54 PM" src="https://user-images.githubusercontent.com/3187342/57185321-91adab00-6e8e-11e9-9c4f-39e0120e0754.png"> Sample ``` Point( triangleHeight: 30.0, edge: Edge.LEFT_AND_RIGHT, child: Container( color: Colors.orange, width: 100.0, height: 100.0, child: Center(child: Text('80')), ), ), ```