私は1つのクラスを持っています:
class CalcPlot(HasTraits):
display = Instance(Figure)
ax1 = self.display.axes[0]
x = np.linspace(0,10,11)
y = np.linspace(0,10,11)
self.display = ax1.plot(x,y,color='r',marker='o')
wx.CallAfter(self.display.canvas.draw)
def _display_default(self):
figure = Figure()
ax1 = figure.add_subplot(111)
ax1 = figure.axes[0]
明らかに、上記のコードは機能しません。新しい図を描画したい場合、別のクラスで表示インスタンスにアクセスするにはどうすればよいでしょうか。