copy method

  1. @override
Points copy(
  1. Object3D source, [
  2. bool? recursive
])
override

Implementation

@override
Points copy(Object3D source, [bool? recursive]) {
  super.copy(source);
  if (source is Points) {
    material = source.material;
    geometry = source.geometry;
  }
  return this;
}