setC method

  1. @override
RayD setC(
  1. RayC o
)
override

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

Implementation

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