setDart method

  1. @override
float3D setDart(
  1. float3D o
)
override

Copies the fields of o into this instance.

Implementation

@override
float3D setDart(float3D o) {
  v = .from(o.v);
  return this;
}