Don't draw borders for the white square

This commit is contained in:
hasufell 2014-10-02 14:37:51 +02:00
parent cb53b2b61d
commit c018304319
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ diagFromVTable :: DiagProp -> VTable -> Diagram Cairo R2
diagFromVTable prop vt
= position (zip (map mkPoint . filter (inRange 0 500) $ vt)
(repeat dot)) # moveTo (p2(-250, -250))
`atop` square 500 # lwG 0.05 # bg white
`atop` square 500 # lwG 0.00 # bg white
where dot = (circle $
getThickness prop :: Diagram Cairo R2) # fc black
mkPoint (x,y) = p2 (x,y)