getAnchors method

List<Vector3> getAnchors()

Implementation

List<Vector3> getAnchors() {
  if (points.length == 1) {
    return points;
  }

  return IterableZip([getStartAnchors(), getEndAnchors()])
      .toList()
      .flattened
      .toList();
}