setD method

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

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

Implementation

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