pastie/pad.cpp

14 lines
168 B
C++
Raw Normal View History

2015-01-15 11:53:32 +01:00
#include "pad.h"
Pad::Pad(const Point &p) :
RotatedRect(p, Size(), 0)
{
points(vertexes);
}
Pad::Pad(const RotatedRect &p) :
RotatedRect(p)
{
points(vertexes);
}