structure
definition
def or abbrev
DihedralAngleData
show as:
view Lean formalization →
formal statement (Lean)
56structure DihedralAngleData where
57 cosine : ℝ
58 cosine_lb : -1 ≤ cosine
59 cosine_ub : cosine ≤ 1
60
61/-- The dihedral angle itself, via `arccos`. -/
62def DihedralAngleData.theta (d : DihedralAngleData) : ℝ := Real.arccos d.cosine
proof body
Definition body.
63
64/-- `θ ∈ [0, π]`. -/