[julia-users] Re: PathPatch object in julia with PyPlot

2014-09-24 Thread Steven G. Johnson
On Tuesday, September 23, 2014 4:17:22 PM UTC-4, Diego Tapias wrote: using PyCall @pyimport matplotlib.patches as patch circle=patch.pymember(“Circle”) But when I try circle[:set_radius](1.0) or set!(circle, radius, 1.0) I got an error. Any ideas? Circle is the class, not an instance,

Re: [julia-users] Re: PathPatch object in julia with PyPlot

2014-09-24 Thread Diego Tapias
Thanks Steven... I will take your advice into account! 2014-09-24 13:33 GMT-05:00 Steven G. Johnson stevenj@gmail.com: (Please don't double-post questions.)

[julia-users] Re: PathPatch object in julia with PyPlot

2014-09-23 Thread Diego Tapias
I have advanced on my question, but I’m stuck trying to change the properties of a PyObject. Consider the following code: using PyCall @pyimport matplotlib.patches as patch circle=patch.pymember(“Circle”) But when I try circle[:set_radius](1.0) or set!(circle, radius, 1.0) I got an error. Any