toPoints method

  1. @override
List<Point3D> toPoints()
override

Converts model to a List of Point3D.

Implementation

@override
List<Point3D> toPoints() =>
    figures.map((e) => e.toPoints()).flatten().toSet().toList();