File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,10 @@ class Error < StandardError
34
34
end
35
35
end
36
36
37
+ require 'matplotlib/axis'
37
38
require 'matplotlib/axes'
38
39
require 'matplotlib/polar_axes'
39
40
require 'matplotlib/figure'
41
+ require 'matplotlib/spines'
40
42
41
43
PyCall . append_sys_path ( File . expand_path ( '../matplotlib/python' , __FILE__ ) )
Original file line number Diff line number Diff line change
1
+ module Matplotlib
2
+ class XTick
3
+ include PyCall ::PyObjectWrapper
4
+ wrap_class PyCall . import_module ( 'matplotlib.axis' ) . XTick
5
+ end
6
+
7
+ class YTick
8
+ include PyCall ::PyObjectWrapper
9
+ wrap_class PyCall . import_module ( 'matplotlib.axis' ) . XTick
10
+ end
11
+
12
+ class XAxis
13
+ include PyCall ::PyObjectWrapper
14
+ wrap_class PyCall . import_module ( 'matplotlib.axis' ) . XAxis
15
+ end
16
+
17
+ class YAxis
18
+ include PyCall ::PyObjectWrapper
19
+ wrap_class PyCall . import_module ( 'matplotlib.axis' ) . XAxis
20
+ end
21
+ end
Original file line number Diff line number Diff line change
1
+ module Matplotlib
2
+ class Spine
3
+ include PyCall ::PyObjectWrapper
4
+ wrap_class PyCall . import_module ( 'matplotlib.spines' ) . Spine
5
+ end
6
+ end
You can’t perform that action at this time.
0 commit comments