From: Joseph Mathilde on
Hello,

I develop a graphical interface with Matlab.
I use two different tool to create visible point in the principal figure:
- the tool fill or patch to create square
- the tool "plot" to create objet of different shape (star, hexagone, circle,...)

My problem is : when I zoom on the figure contening all the objects, the plot objets don't enlarge, they become smaller, whereas the other graphical object enlarge, typically the fill/patch objects. I don't want this sort of "adaptation of the size" of the plot objet in the figure, I want the same behaviour that the other objet. Is it possible?
Is there a special option in plot or figure, or axes? (a sort of option as "denormalised")
Thank you for your help.
From: sscnekro on
> Is there a special option in plot or figure, or axes? (a sort of option as "denormalised")

Does it have to do with this what you want?
http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/f4-48363.html
From: Walter Roberson on
Joseph Mathilde wrote:

> I develop a graphical interface with Matlab.
> I use two different tool to create visible point in the principal figure:
> - the tool fill or patch to create square - the tool "plot" to create
> objet of different shape (star, hexagone, circle,...)

> My problem is : when I zoom on the figure contening all the objects, the
> plot objets don't enlarge, they become smaller, whereas the other
> graphical object enlarge, typically the fill/patch objects. I don't want
> this sort of "adaptation of the size" of the plot objet in the figure, I
> want the same behaviour that the other objet. Is it possible?

Those objects you mention: are you plotting them as a series of lines
yourself, or are you using plot markers? plot markers do not enlarge as
you zoom, not unless you use a zoom post function and change the marker
size to match the zoom level.
From: Joseph Mathilde on
Unfortunalty not. AspectDataRatio allows the settle of the size of an axe compared with an other.There are not a special action during a zoom on the plot object.
My plot object still reduce when I zoom on an area.
Thanks
From: Joseph Mathilde on

> Those objects you mention: are you plotting them as a series of lines
> yourself, or are you using plot markers? plot markers do not enlarge as
> you zoom, not unless you use a zoom post function and change the marker
> size to match the zoom level.

Hello,

I use plot markers and it's this plot markers which reduce when I zoom on an area.
Sorry but I don't understand your last comment. Can you explain it? Thanks.