split method

List<Mobject> split()

Implementation

List<Mobject> split() {
  return [
    if (hasPoints()) this,
    ...submobjects,
  ];
}