Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

why i couldn't creat hgtransform graphics object before the objects belong to it

1 visualizzazione (ultimi 30 giorni)
this code is ok
>> ph=fill([0 -0.05 0.1 -0.05],[0 0.05 0 -0.05],'r');
>> hgh=hgtransform;
>> set(ph,'parent',hgh)
but these are wrong:
>> hgh=hgtransform;
>> ph=fill([0 -0.05 0.1 -0.05],[0 0.05 0 -0.05],'r');
>> set(ph,'parent',hgh)
Error using set
Invalid object handle
>> hgh=hgtransform;
>> fill([0 -0.05 0.1 -0.05],[0 0.05 0 -0.05],'r','parent',hgh)
Error using fill
Not enough input arguments.
i coudn't understand why it can't work
  2 Commenti
213
213 il 20 Giu 2014
Note   Many plotting functions clear the axes (i.e., remove axes children) before drawing the graph. Clearing the axes also deletes any hgtransform objects in the axes.
Mike Garrity
Mike Garrity il 24 Giu 2014
Yes, that's exactly why the one with the set failed.
You can see the hgtransform get deleted by the clear of the axes if you do the following:
hgh=hgtransform('DeleteFcn','disp bye');
ph=fill([0 -0.05 0.1 -0.05],[0 0.05 0 -0.05],'r');
ishghandle(hgh)
You'll see the hgtransform object print bye from within the fill command. Then when we get to the ishghandle command, hgh is no longer a valid handle.
Your last example is actually a bug. The fill command is deleting the hgtransform object as you noted, but it shouldn't have because you passed it in as the parent.
You can work around either of these by using "hold on".

Risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by