setDart method

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

Copies the fields of o into this instance.

Implementation

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