Bridge coercions from PiecewiseC1Curve to mathlib Path / ContinuousMap #
We provide PiecewiseC1Curve.toPath and PiecewiseC1Curve.toContinuousMap that
rescale the domain [a,b] to the unit interval [0,1] via iccHomeoI.
Convert a PiecewiseC1Curve to a mathlib Path by rescaling [a,b] to [0,1].
The path goes from γ(a) to γ(b).
Equations
- γ.toPath = { toFun := fun (t : ↑unitInterval) => γ.toFun ↑(PiecewiseC1Curve.rescale✝ γ t), continuous_toFun := ⋯, source' := ⋯, target' := ⋯ }
Instances For
toPath agrees with the original curve under rescaling.
toContinuousMap agrees with the original curve under rescaling.
A closed PiecewiseC1Curve gives a loop, i.e., a Path from γ(a) to itself.