Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
213
213 am 20 Jun. 2014
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentare
213
213 am 20 Jun. 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 am 24 Jun. 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".

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by