copyInto method

void copyInto(
  1. Obb3 other
)

Copy from this into other.

Implementation

void copyInto(Obb3 other) {
  other._center.setFrom(_center);
  other._halfExtents.setFrom(_halfExtents);
  other._axis0.setFrom(_axis0);
  other._axis1.setFrom(_axis1);
  other._axis2.setFrom(_axis2);
}