1 | %'get_plot_handles': list the handles of elements setting the plotting parameters in the uvmat interface
|
---|
2 | %--------------------------------------------------------
|
---|
3 | %function [PlotHandles]=get_plot_handles(handles)
|
---|
4 | %
|
---|
5 | % OUTPUT:
|
---|
6 | % PlotHandles: structure containing the used to set plotting parameters
|
---|
7 | % INPUT:
|
---|
8 | % handles: structure of the handles of the graphic elements in the uvmat interface
|
---|
9 | % -- TODO: needs to be replaced by a cell listing the element tags --
|
---|
10 |
|
---|
11 | function PlotHandles=get_plot_handles(handles)
|
---|
12 | PlotHandles.auto_xy=handles.auto_xy;
|
---|
13 | %For scalar field representation
|
---|
14 | PlotHandles.MaxA=handles.MaxA;
|
---|
15 | PlotHandles.MinA=handles.MinA;
|
---|
16 | PlotHandles.AutoScal=handles.AutoScal;
|
---|
17 | PlotHandles.BW=handles.BW;
|
---|
18 | PlotHandles.Contours=handles.Contours;
|
---|
19 | PlotHandles.IncrA=handles.IncrA;
|
---|
20 | PlotHandles.SCALAR_title=handles.SCALAR_title;
|
---|
21 | PlotHandles.min_title=handles.min_title;
|
---|
22 | PlotHandles.max_title=handles.max_title;
|
---|
23 | PlotHandles.frame_scal=handles.frame_scal;
|
---|
24 | PlotHandles.npx=handles.npx;
|
---|
25 | PlotHandles.npy=handles.npy;
|
---|
26 | PlotHandles.npx_title=handles.npx_title;
|
---|
27 | PlotHandles.npy_title=handles.npy_title;
|
---|
28 |
|
---|
29 | %For vector field representation
|
---|
30 | PlotHandles.frame_vect=handles.frame_vect;
|
---|
31 | PlotHandles.VECT_title=handles.VECT_title;
|
---|
32 | PlotHandles.VecScale=handles.VecScale;
|
---|
33 | PlotHandles.AutoVec=handles.AutoVec;
|
---|
34 | PlotHandles.HideFalse=handles.HideFalse;
|
---|
35 | PlotHandles.HideWarning=handles.HideWarning;
|
---|
36 | PlotHandles.record=handles.record;
|
---|
37 | PlotHandles.col_vec=handles.col_vec;
|
---|
38 | PlotHandles.Color_title=handles.Color_title;
|
---|
39 | PlotHandles.color_code=handles.color_code;
|
---|
40 | PlotHandles.colcode1=handles.colcode1;
|
---|
41 | PlotHandles.colcode2=handles.colcode2;
|
---|
42 | PlotHandles.vec_col_bar=handles.vec_col_bar;
|
---|
43 | PlotHandles.slider1=handles.slider1;
|
---|
44 | PlotHandles.slider2=handles.slider2;
|
---|
45 | PlotHandles.max_vec=handles.max_vec;
|
---|
46 | PlotHandles.min_vec=handles.min_vec;
|
---|
47 | PlotHandles.scale_title=handles.scale_title;
|
---|
48 | PlotHandles.AutoVecColor=handles.AutoVecColor;
|
---|
49 | PlotHandles.decimate4=handles.decimate4;
|
---|
50 | PlotHandles.min_C_title=handles.min_C_title;
|
---|
51 | PlotHandles.max_C_title=handles.max_C_title;
|
---|
52 | PlotHandles.MenuVectors=handles.MenuVectors;
|
---|
53 | PlotHandles.MenuEditVectors=handles.MenuEditVectors;
|
---|
54 | PlotHandles.edit_vect=handles.edit_vect;
|
---|
55 | %menu for the choice of the current plotting axes
|
---|
56 | %PlotHandles.MenuAxes=handles.MenuAxes;
|
---|
57 |
|
---|
58 | %handles for move_mouse
|
---|
59 | PlotHandles.mouse_coord=handles.mouse_coord;
|
---|
60 | % PlotHandles.POINTS=handles.POINTS;
|
---|
61 | % PlotHandles.LINE=handles.LINE;
|
---|
62 | % PlotHandles.PLANE=handles.PLANE;
|
---|
63 | % PlotHandles.PATCH=handles.PATCH;
|
---|
64 | PlotHandles.cal=handles.cal;
|
---|
65 | %PlotHandles.makemask=handles.makemask;
|
---|
66 | PlotHandles.edit=handles.edit;
|
---|
67 | PlotHandles.text_display_1=handles.text_display_1;
|
---|
68 | PlotHandles.text_display_2=handles.text_display_2;
|
---|
69 | PlotHandles.text_display_3=handles.text_display_3;
|
---|
70 | PlotHandles.text_display_4=handles.text_display_4;
|
---|
71 |
|
---|
72 | %handles for mouse_up
|
---|
73 | PlotHandles.zoom=handles.zoom; |
---|