centerX property
num
get
centerX
Gets or sets the center Point#x of this vertex, in document coordinates. This property depends on both #bounds and #focus. Setting this property does not modify the position of any Node, but it will modify the value of #bounds.
Implementation
_i2.num get centerX => _i4.getProperty(
this,
'centerX',
);
set
centerX
(num value)
Implementation
set centerX(_i2.num value) {
_i4.setProperty(
this,
'centerX',
value,
);
}