setD method

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

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

Implementation

@override
BoundingBoxD setD(BoundingBoxD o) {
  originalPointer ??= o.originalPointer;
  min.setD(o.min);
  max.setD(o.max);
  return this;
}