intersectionWithLine method
Vector3?
intersectionWithLine(
- Vector3 a,
- 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);
}