intersectionWithLine method

Vector3? intersectionWithLine(
  1. Vector3 a,
  2. Vector3 b
)

Returns Plane intersection with a given line (from a to b).

Implementation

Vector3? intersectionWithLine(Vector3 a, Vector3 b) {
  return _getPlaneLineIntersection(this, a, b);
}