copy method

Curve copy(
  1. Curve source
)

Copies another name object to this instance.

Implementation

Curve copy(Curve source) {
  arcLengthDivisions = source.arcLengthDivisions;
  return this;
}