copy method
复制当前矩形特征
Implementation
RectangleFeature copy() {
return RectangleFeature(
topLeft: topLeft,
topRight: topRight,
bottomRight: bottomRight,
bottomLeft: bottomLeft,
);
}
复制当前矩形特征
RectangleFeature copy() {
return RectangleFeature(
topLeft: topLeft,
topRight: topRight,
bottomRight: bottomRight,
bottomLeft: bottomLeft,
);
}