setD method

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

Copies the fields of o into this instance and returns this.

Implementation

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