diff -r 48374309f3d1 -r b725b7fb63a5 src/types/pattern.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/types/pattern.cpp Thu Mar 29 12:10:54 2018 +0300 @@ -0,0 +1,11 @@ +#include "pattern.h" + +ColoredPolygon::ColoredPolygon(const QPolygonF& polygon, LDColor color) : + geometry {polygon}, + color {color} {} + +Pattern::Pattern(const QSizeF& size) : + canvasSize {size} +{ + +}