neuronalmotion / blueprint

A crossplatform mockup designer based on C++/Qt5.
Apache License 2.0
7 stars 3 forks source link

Remove ShapeRectangle / ShapeEllipse layer #105

Closed synapticvoid closed 9 years ago

synapticvoid commented 9 years ago

Theses shapes are just special configurations of a ShapeBezier, they behave exactly the same.

The creation of these shape should be done via :

ShapeBezier* ShapeFactory::createRectangle();
ShapeBezier* ShapeFactory::createEllipse();
 ```