source: trunk/src/get_plot_handles.m @ 38

Last change on this file since 38 was 19, checked in by gostiaux, 14 years ago

the private files have been moved down to the root folder

File size: 2.8 KB
Line 
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
11function PlotHandles=get_plot_handles(handles)
12PlotHandles.auto_xy=handles.auto_xy;
13%For scalar field representation
14PlotHandles.MaxA=handles.MaxA;
15PlotHandles.MinA=handles.MinA;
16PlotHandles.AutoScal=handles.AutoScal;
17PlotHandles.BW=handles.BW;
18PlotHandles.Contours=handles.Contours;
19PlotHandles.IncrA=handles.IncrA;
20PlotHandles.SCALAR_title=handles.SCALAR_title;
21PlotHandles.min_title=handles.min_title;
22PlotHandles.max_title=handles.max_title;
23PlotHandles.frame_scal=handles.frame_scal;
24PlotHandles.npx=handles.npx;
25PlotHandles.npy=handles.npy;
26PlotHandles.npx_title=handles.npx_title;
27PlotHandles.npy_title=handles.npy_title;
28
29%For vector field representation
30PlotHandles.frame_vect=handles.frame_vect;
31PlotHandles.VECT_title=handles.VECT_title;
32PlotHandles.VecScale=handles.VecScale;
33PlotHandles.AutoVec=handles.AutoVec;
34PlotHandles.HideFalse=handles.HideFalse;
35PlotHandles.HideWarning=handles.HideWarning;
36PlotHandles.record=handles.record;
37PlotHandles.col_vec=handles.col_vec;
38PlotHandles.Color_title=handles.Color_title;
39PlotHandles.color_code=handles.color_code;
40PlotHandles.colcode1=handles.colcode1;
41PlotHandles.colcode2=handles.colcode2;
42PlotHandles.vec_col_bar=handles.vec_col_bar;
43PlotHandles.slider1=handles.slider1;
44PlotHandles.slider2=handles.slider2;
45PlotHandles.max_vec=handles.max_vec;
46PlotHandles.min_vec=handles.min_vec;
47PlotHandles.scale_title=handles.scale_title;
48PlotHandles.AutoVecColor=handles.AutoVecColor;
49PlotHandles.decimate4=handles.decimate4;
50PlotHandles.min_C_title=handles.min_C_title;
51PlotHandles.max_C_title=handles.max_C_title;
52PlotHandles.MenuVectors=handles.MenuVectors;
53PlotHandles.MenuEditVectors=handles.MenuEditVectors;
54PlotHandles.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
59PlotHandles.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;
64PlotHandles.cal=handles.cal;
65%PlotHandles.makemask=handles.makemask;
66PlotHandles.edit=handles.edit;
67PlotHandles.text_display_1=handles.text_display_1;
68PlotHandles.text_display_2=handles.text_display_2;
69PlotHandles.text_display_3=handles.text_display_3;
70PlotHandles.text_display_4=handles.text_display_4;
71
72%handles for mouse_up
73PlotHandles.zoom=handles.zoom;
Note: See TracBrowser for help on using the repository browser.