copy method
Copies another name
object to this instance.
Implementation
@override
LineCurve3 copy(Curve source ) {
super.copy(source);
v1.setFrom( source.v1 );
v2.setFrom( source.v2 );
return this;
}
Copies another name
object to this instance.
@override
LineCurve3 copy(Curve source ) {
super.copy(source);
v1.setFrom( source.v1 );
v2.setFrom( source.v2 );
return this;
}