getAllPoints method

List<Vector3> getAllPoints()

Implementation

List<Vector3> getAllPoints() {
  return [
    for (var mob in getFamilyWithPoints()) ...mob.points,
  ];
}