setFrom method

void setFrom(
  1. CollisionProspect<T> other
)

Sets the prospect to contain the content of other.

Implementation

void setFrom(CollisionProspect<T> other) {
  _a = other._a;
  _b = other._b;
  _hash = other._hash;
}