setD method

  1. @override
Vector3D setD(
  1. Vector3D o
)
override

Copies the fields of the Dart struct o into this instance.

Implementation

@override
Vector3D setD(Vector3D o) {
  originalPointer ??= o.originalPointer;
  return set(o.x, o.y, o.z);
}