copy method

  1. @override
Path copy(
  1. Curve source
)
override

Copies another name object to this instance.

Implementation

@override
Path copy(Curve source){
  assert(source is Path);
  super.copy(source);
  currentPoint.setFrom(source.currentPoint);
  return this;
}