flattenedLengths property

Array<Array<num>> get flattenedLengths

(undocumented) Flattened lengths represents a series of lengths of the paths making up a Geometry. The inner arrays consist of a sequence of PathSegment lengths making up a PathFigure, while the outer array represents the whole Geometry of these PathFigures.

Implementation

_i7.Array<_i7.Array<_i2.num>> get flattenedLengths => _i4.getProperty(
      this,
      'flattenedLengths',
    );
set flattenedLengths (Array<Array<num>> value)

Implementation

set flattenedLengths(_i7.Array<_i7.Array<_i2.num>> value) {
  _i4.setProperty(
    this,
    'flattenedLengths',
    value,
  );
}