copy method

复制当前矩形特征

Implementation

RectangleFeature copy() {
  return RectangleFeature(
    topLeft: topLeft,
    topRight: topRight,
    bottomRight: bottomRight,
    bottomLeft: bottomLeft,
  );
}