Dislin Wrapper
- Posted by Icy_Viking 1 week ago
- 228 views
Hi all,
I have made a wrapper of Dislin for Euphoria. Dislin is a high level library for plotting graphs and such.
You can get it here https://github.com/gAndy50/Misc/tree/master/Eudislin
include std/ffi.e include dislin.e scrmod("revers") metafl("cons") disini() pagera() complx() frame(3) axspos(400,1850) axslen(2400,1400) name("Longitude","x") name("Latitude","y") titlin("World Coastlines and Lakes",3) labels("map","xy") grafmp(-180.0,180.0,-180.0,90.0,-90.0,90.0,-90.0,30.0) gridmp(1,1) color("green") world() color("fore") height(50) title() disfin()