Skip to content

Commit

Permalink
Strip out function-level doc comments
Browse files Browse the repository at this point in the history
Attempt to get package down to publishable size
  • Loading branch information
ianmackenzie committed Jun 30, 2018
1 parent 2ff512f commit 738f319
Show file tree
Hide file tree
Showing 38 changed files with 883 additions and 11,458 deletions.
18 changes: 5 additions & 13 deletions src/Arc/SweptAngle.elm
Original file line number Diff line number Diff line change
Expand Up @@ -26,38 +26,30 @@ The `SweptAngle` type is used in these cases to specify which arc you want.
import Geometry.Types as Types


{-| Indicate which of four possible arcs you would like to construct. Used by
[`Arc2d.withRadius`](Arc2d#withRadius) and [`EllipticalArc2d.fromEndpoints`](EllipticalArc2d#fromEndpoints).
-}
{-| -}
type alias SweptAngle =
Types.SweptAngle


{-| Construct a counterclockwise arc with a swept angle between 0 and 180
degrees.
-}
{-| -}
smallPositive : SweptAngle
smallPositive =
Types.SmallPositive


{-| Construct a clockwise arc with a swept angle between 0 and -180 degrees.
-}
{-| -}
smallNegative : SweptAngle
smallNegative =
Types.SmallNegative


{-| Construct a counterclockwise arc with a swept angle between 180 and 360
degrees.
-}
{-| -}
largePositive : SweptAngle
largePositive =
Types.LargePositive


{-| Construct a clockwise arc with a swept angle between -180 and -360 degrees.
-}
{-| -}
largeNegative : SweptAngle
largeNegative =
Types.LargeNegative
Loading

0 comments on commit 738f319

Please sign in to comment.