ruby-gr 0.73.19.0 → 0.73.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/gr.rb +28 -28
- data/lib/gr_commons/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 875e34444c38c15bd8d817784ded0a930e3126a3cc57ae90f8ae34e720ea7e06
|
|
4
|
+
data.tar.gz: d3e8357786782a3da6b2256f40865a82a3408506d605d27692b8f52e5f8d787f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d49ab20cb176d37d092600164fb29fbb6c762d445c8b18803aca52d557f23873ba6af60126a62ece955a22c4274d7430aeb2e0ba7a31d07af8e211d7077dfda
|
|
7
|
+
data.tar.gz: f8594bf5ea403ef7cd663ce44919e760f5d79d5d1122e2b29ac45195f9108226407c1953da225667b0f26ed788009fc6e26c983e38902b49cc196dd79860b464
|
data/lib/gr.rb
CHANGED
|
@@ -1119,20 +1119,20 @@ module GR
|
|
|
1119
1119
|
def axis(option, min: Float::NAN, max: Float::NAN, tick: Float::NAN, org: Float::NAN, position: Float::NAN, major_count: 1,
|
|
1120
1120
|
tick_size: Float::NAN, label_position: Float::NAN, draw_axis_line: 1, label_orientation: 0)
|
|
1121
1121
|
ax = FFI::Axis.malloc
|
|
1122
|
-
ax
|
|
1123
|
-
ax
|
|
1124
|
-
ax
|
|
1125
|
-
ax
|
|
1126
|
-
ax
|
|
1127
|
-
ax
|
|
1128
|
-
ax
|
|
1129
|
-
ax
|
|
1130
|
-
ax
|
|
1131
|
-
ax
|
|
1132
|
-
ax
|
|
1133
|
-
ax
|
|
1134
|
-
ax
|
|
1135
|
-
ax
|
|
1122
|
+
ax[:min] = min
|
|
1123
|
+
ax[:max] = max
|
|
1124
|
+
ax[:tick] = tick
|
|
1125
|
+
ax[:org] = org
|
|
1126
|
+
ax[:position] = position
|
|
1127
|
+
ax[:major_count] = major_count
|
|
1128
|
+
ax[:tick_size] = tick_size
|
|
1129
|
+
ax[:label_position] = label_position
|
|
1130
|
+
ax[:draw_axis_line] = draw_axis_line
|
|
1131
|
+
ax[:label_orientation] = label_orientation
|
|
1132
|
+
ax[:ticks] = 0
|
|
1133
|
+
ax[:num_ticks] = 0
|
|
1134
|
+
ax[:tick_labels] = 0
|
|
1135
|
+
ax[:num_tick_labels] = 0
|
|
1136
1136
|
super(option, ax)
|
|
1137
1137
|
ax
|
|
1138
1138
|
end
|
|
@@ -1140,20 +1140,20 @@ module GR
|
|
|
1140
1140
|
def drawaxis(option, min: Float::NAN, max: Float::NAN, tick: Float::NAN, org: Float::NAN, position: Float::NAN,
|
|
1141
1141
|
major_count: 1, tick_size: Float::NAN, label_position: Float::NAN, draw_axis_line: 1, label_orientation: 0)
|
|
1142
1142
|
ax = FFI::Axis.malloc
|
|
1143
|
-
ax
|
|
1144
|
-
ax
|
|
1145
|
-
ax
|
|
1146
|
-
ax
|
|
1147
|
-
ax
|
|
1148
|
-
ax
|
|
1149
|
-
ax
|
|
1150
|
-
ax
|
|
1151
|
-
ax
|
|
1152
|
-
ax
|
|
1153
|
-
ax
|
|
1154
|
-
ax
|
|
1155
|
-
ax
|
|
1156
|
-
ax
|
|
1143
|
+
ax[:min] = min
|
|
1144
|
+
ax[:max] = max
|
|
1145
|
+
ax[:tick] = tick
|
|
1146
|
+
ax[:org] = org
|
|
1147
|
+
ax[:position] = position
|
|
1148
|
+
ax[:major_count] = major_count
|
|
1149
|
+
ax[:tick_size] = tick_size
|
|
1150
|
+
ax[:label_position] = label_position
|
|
1151
|
+
ax[:draw_axis_line] = draw_axis_line
|
|
1152
|
+
ax[:label_orientation] = label_orientation
|
|
1153
|
+
ax[:ticks] = 0
|
|
1154
|
+
ax[:num_ticks] = 0
|
|
1155
|
+
ax[:tick_labels] = 0
|
|
1156
|
+
ax[:num_tick_labels] = 0
|
|
1157
1157
|
super(option, ax)
|
|
1158
1158
|
ax
|
|
1159
1159
|
end
|
data/lib/gr_commons/version.rb
CHANGED