distanceToVector3 method

double distanceToVector3(
  1. Vector3 point
)

Return the signed distance from point to this plane.

Implementation

double distanceToVector3(Vector3 point) => _normal.dot(point) + constant;