Closed GoogleCodeExporter closed 9 years ago
It all starts w/ typing. You call G.axes.type first then for each subsequent
G.axes.range call it adds them IN ORDER depending on the types you declare. An
example:
G.axes.type('xy')
G.axes.range(0,360) # x range
G.axes.range(0,180) # y range
Original comment by justquick
on 23 Aug 2008 at 8:21
After much thought, it turns out you were right, i hate the way it does axes
index
assignment. Now for all axes functions, you must pass in your index as the
first argument
{{{
G.axes.type('xy')
G.axes.range(0, 0,360) # x range
G.axes.range(1, 0,180) # y range
}}}
Original comment by justquick
on 21 Apr 2009 at 2:29
Fixed in version 0.8!
Original comment by justquick
on 1 May 2009 at 10:01
Original issue reported on code.google.com by
markess...@gmail.com
on 23 Aug 2008 at 9:22