flattenedSegments property

Array<Array<num>> get flattenedSegments

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

Implementation

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

Implementation

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