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