intersectPlane<T extends Vector> method
Implementation
T? intersectPlane<T extends Vector>(Plane plane, T target) {
double? t = distanceToPlane(plane);
return t == null ? null : at(t, target);
}
T? intersectPlane<T extends Vector>(Plane plane, T target) {
double? t = distanceToPlane(plane);
return t == null ? null : at(t, target);
}