setD method

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

Implementation

@override
RayD setD(RayD o) {
  originalPointer ??= o.originalPointer;
  position.setD(o.position);
  direction.setD(o.direction);
  return this;
}