aboutsummaryrefslogtreecommitdiffstats
path: root/test/runexamples.jl
blob: a13d1352e2663e4d440ef8bb8e563efd3f928120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

println("Importing libs...")
include("../src/PyX.jl")
using PyX
using LaTeXStrings
using Base.Test

##### Run all the examples

println("Drawing...")
include("../examples/drawing/arrow.jl")
#include("../examples/drawing/metapost.jl") # Python3 only?
include("../examples/drawing/pathitem.jl")
include("../examples/drawing/path.jl")
include("../examples/drawing/strokefill.jl")
include("../examples/drawing/style.jl")

include("../examples/drawing2d/clipping.jl")
include("../examples/drawing2d/ellipse.jl")
include("../examples/drawing2d/insert.jl")
include("../examples/drawing2d/parallel.jl")
include("../examples/drawing2d/smoothed.jl")

println("Graphs...")
include("../examples/splitgraphs/minimal.jl")
include("../examples/splitgraphs/splitatvalue.jl")

include("../examples/bargraphs/changebar.jl")
include("../examples/bargraphs/compare.jl")
include("../examples/bargraphs/errors.jl")
include("../examples/bargraphs/fromvalue.jl")
include("../examples/bargraphs/minimal.jl")
include("../examples/bargraphs/month.jl")
include("../examples/bargraphs/stacked.jl")

include("../examples/graphs/axis.jl")
include("../examples/graphs/change.jl")
include("../examples/graphs/function.jl")
include("../examples/graphs/lissajous.jl")
include("../examples/graphs/join.jl")
include("../examples/graphs/minimal.jl")
include("../examples/graphs/points.jl")

include("../examples/graphstyles/histogram.jl")
include("../examples/graphstyles/usesymbol.jl")
include("../examples/graphstyles/errorbar.jl")
include("../examples/graphstyles/density.jl")

println("3D Graphs...")
include("../examples/3dgraphs/bar.jl")
include("../examples/3dgraphs/color.jl")
include("../examples/3dgraphs/grid.jl")
include("../examples/3dgraphs/surface.jl")