Signed distance to an affine subspace in a Euclidean space. #
This file defines the signed distance between an affine subspace and a point, in the direction of a given reference point.
Main definitions #
AffineSubspace.signedDist
is the signed distance between an affine subspace and a point.Affine.Simplex.signedDist
is the signed distance between a face of a simplex and a point. In the case of a triangle, these distances are trilinear coordinates.
References #
The signed distance between s
and a point, in the direction of the reference point p
.
This is expected to be used when p
does not lie in s
(in the degenerate case where p
lies
in s
, this yields 0) and when the point at which the distance is evaluated lies in the affine
span of s
and p
(any component of the distance orthogonal to that span is disregarded).
Equations
- One or more equations did not get rendered due to their size.
Instances For
The signed distance between the face of s
excluding point i
of that simplex and a point,
in the direction of the reference point i
. This is expected to be used when the point at which
the distance is evaluated lies in the affine span of the simplex (any component of the distance
orthogonal to that span is disregarded). In the case of a triangle, these distances are
trilinear coordinates; in a tetrahedron, they are quadriplanar coordinates.
Equations
- s.signedDist i = (affineSpan ℝ (Set.range (s.faceOpposite i).points)).signedDist (s.points i)