rotationSpot property
Spot
get
rotationSpot
Gets or sets the spot on the #rotateObject that is used in rotating this part with the RotatingTool.
Value must be of the type Spot.
The value must be a specific spot -- i.e. one for which Spot#isSpot is true, or else Spot.Default
.
If the value is Spot.Default
, the RotatingTool uses
the locationSpot if the #rotateObject is equal to the #locationObject, otherwise
it uses Spot.Center
.
The initial value is Spot.Default
.
Implementation
_i3.Spot get rotationSpot => _i4.getProperty(
this,
'rotationSpot',
);
set
rotationSpot
(Spot value)
Implementation
set rotationSpot(_i3.Spot value) {
_i4.setProperty(
this,
'rotationSpot',
value,
);
}