not-gloss 0.7.1.0 → 0.7.1.1
raw patch · 3 files changed
+8/−9 lines, 3 files
Files
- changelog.txt +3/−0
- not-gloss.cabal +1/−1
- src/Vis/Vis.hs +4/−8
changelog.txt view
@@ -1,3 +1,6 @@+0.7.1.0:+- add an interface which makes a movie+ 0.7.0.0: - pass in user options with Options type - add an optional background color argument
not-gloss.cabal view
@@ -1,5 +1,5 @@ name: not-gloss-version: 0.7.1.0+version: 0.7.1.1 stability: Experimental synopsis: Painless 3D graphics, no affiliation with gloss description:{
src/Vis/Vis.hs view
@@ -41,14 +41,10 @@ data Options = Options- { -- ^ optional background color- optBackgroundColor :: Maybe GC.Color- -- ^ optional (x,y) window size in pixels- , optWindowSize :: Maybe (Int,Int)- -- ^ optional (x,y) window origin in pixels- , optWindowPosition :: Maybe (Int,Int)- -- ^ window name- , optWindowName :: String+ { optBackgroundColor :: Maybe GC.Color -- ^ optional background color+ , optWindowSize :: Maybe (Int,Int) -- ^ optional (x,y) window size in pixels+ , optWindowPosition :: Maybe (Int,Int) -- ^ optional (x,y) window origin in pixels+ , optWindowName :: String -- ^ window name } deriving Show myGlInit :: Options -> IO ()