Allow drawing the polygon stuff via GUI

This commit is contained in:
2014-10-25 03:15:38 +02:00
parent 7965443aa6
commit ddff8b1fb2
5 changed files with 121 additions and 23 deletions

View File

@@ -5,6 +5,7 @@ module Graphics.Diagram.Plotter where
import Algebra.Vector
import Algebra.VectorTypes
import Algorithms.ConvexHull.GrahamScan
import Algorithms.PolygonIntersection.Core
import Data.Monoid
import Diagrams.Backend.Cairo
import Diagrams.Prelude hiding ((<>))
@@ -44,6 +45,54 @@ coordPointsText = Diag cpt
vtf = filter (inRange (dX p) (dY p)) vt
-- |Draw the lines of the polygon.
polyLines :: Diag
polyLines = Diag pp
where
pp _ [] = mempty
pp p vt =
(strokeTrail .
fromVertices $
vtf ++ [head vtf]) #
moveTo (head vt) #
lc black
where
vtf = filter (inRange (dX p) (dY p)) vt
-- |Show the intersection points of two polygons as red dots.
polyIntersection :: [PT]
-> [PT]
-> DiagProp
-> Diagram Cairo R2
polyIntersection pA pB p =
position (zip vtpi (repeat dot))
where
paF = filter (inRange (dX p) (dY p)) pA
pbF = filter (inRange (dX p) (dY p)) pB
dot = (circle $ t p :: Diagram Cairo R2) # fc red # lc red
vtpi = intersectionPoints
. sortLexPolys
$ (sortLexPoly paF, sortLexPoly pbF)
-- |Show the intersection points of two polygons as red dots.
polyIntersectionText :: [PT]
-> [PT]
-> DiagProp
-> Diagram Cairo R2
polyIntersectionText pA pB p =
position $
zip vtpi
(pointToTextCoord # fc red <$> vtpi) # translate (r2 (0, 10))
where
paF = filter (inRange (dX p) (dY p)) pA
pbF = filter (inRange (dX p) (dY p)) pB
vtpi = intersectionPoints
. sortLexPolys
$ (sortLexPoly paF, sortLexPoly pbF)
-- |Create a diagram which shows the points of the convex hull.
convexHP :: Diag
convexHP = Diag chp