intersectPlane method

dynamic intersectPlane(
  1. Plane plane,
  2. Vector3 target
)

Implementation

intersectPlane(Plane plane, Vector3 target) {
  num? t = distanceToPlane(plane);

  return t == null ? null : at(t, target);
}