我正在尝试在Circle
形状上显示边界。但是由于strokewidth
有点高,因此bounding
矩形显示在圆内。因此,我尝试使用strokeBounds
来代替界限,但是它不起作用。这是我的代码:
var centerPoint = new Point(100, 100);
var centerCircle = new Path.Circle(centerPoint, 25);
centerCircle.strokeColor = '#000';
centerCircle.strokeWidth = 10;
centerCircle.bounds.selected = true;
centerCircle.strokeBounds.selected = true;
这是我的代码的Sketch链接。
这里centerCircle.strokeBounds.selected
不确定。在这种情况下如何正确显示边界矩形?