Documentation

Mathlib.Geometry.Euclidean.SignedDist

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 #

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
    @[simp]
    noncomputable def Affine.Simplex.signedDist {V : Type u_1} {P : Type u_2} [NormedAddCommGroup V] [InnerProductSpace V] [MetricSpace P] [NormedAddTorsor V P] {n : } [NeZero n] (s : Simplex P n) (i : Fin (n + 1)) :

    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
    Instances For
      theorem Affine.Simplex.signedDist_apply_of_ne {V : Type u_1} {P : Type u_2} [NormedAddCommGroup V] [InnerProductSpace V] [MetricSpace P] [NormedAddTorsor V P] {n : } [NeZero n] (s : Simplex P n) {i j : Fin (n + 1)} (h : j i) :
      (s.signedDist i) (s.points j) = 0