setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
MatrixD setD(MatrixD o) {
originalPointer ??= o.originalPointer;
return set(
o.m0, o.m1, o.m2, o.m3,
o.m4, o.m5, o.m6, o.m7,
o.m8, o.m9, o.m10, o.m11,
o.m12, o.m13, o.m14, o.m15,
);
}