Skip to content

Commit

Permalink
add doc comments to Orientation code
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesGallicchio committed Jun 8, 2024
1 parent c5ebeed commit e54df20
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lean/Geo/Definitions/Orientations.lean
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ noncomputable section
open Classical

inductive Orientation : Type where
/-- Clockwise turn; `det x y z < 0` -/
| cw
/-- Counter-clockwise turn; `det x y z > 0` -/
| ccw
/-- Collinear; `det x y z = 0` -/
| collinear
deriving DecidableEq, Repr

Expand Down

0 comments on commit e54df20

Please sign in to comment.