comparison src/paranormal/wave.c @ 155:adf9f4b26039 trunk

[svn] - user-friendly names (UI side unimplemented still)
author nenolod
date Tue, 31 Oct 2006 12:07:32 -0800
parents fd9c0a5871ac
children 37b53a5a9aa4
comparison
equal deleted inserted replaced
154:1378854babe0 155:adf9f4b26039
49 } 49 }
50 } 50 }
51 51
52 struct pn_actuator_desc builtin_wave_horizontal = 52 struct pn_actuator_desc builtin_wave_horizontal =
53 { 53 {
54 "wave_horizontal", "Draws one or two waveforms horizontally across " 54 "wave_horizontal", "Horizontal Waveform",
55 "Draws one or two waveforms horizontally across "
55 "the drawing surface", 56 "the drawing surface",
56 0, wave_horizontal_opts, 57 0, wave_horizontal_opts,
57 NULL, NULL, wave_horizontal_exec 58 NULL, NULL, wave_horizontal_exec
58 }; 59 };
59 60
97 } 98 }
98 99
99 100
100 struct pn_actuator_desc builtin_wave_vertical = 101 struct pn_actuator_desc builtin_wave_vertical =
101 { 102 {
102 "wave_vertical", "Draws one or two waveforms vertically across " 103 "wave_vertical", "Vertical Waveform",
104 "Draws one or two waveforms vertically across "
103 "the drawing surface", 105 "the drawing surface",
104 0, wave_vertical_opts, 106 0, wave_vertical_opts,
105 NULL, NULL, wave_vertical_exec 107 NULL, NULL, wave_vertical_exec
106 }; 108 };
107 109
154 } 156 }
155 } 157 }
156 158
157 struct pn_actuator_desc builtin_wave_normalize = 159 struct pn_actuator_desc builtin_wave_normalize =
158 { 160 {
159 "wave_normalize", "Normalizes the waveform data used by the wave_* actuators", 161 "wave_normalize", "Normalize Waveform Data",
162 "Normalizes the waveform data used by the wave_* actuators",
160 0, wave_normalize_opts, 163 0, wave_normalize_opts,
161 NULL, NULL, wave_normalize_exec 164 NULL, NULL, wave_normalize_exec
162 }; 165 };
163 166
164 /* **************** wave_smooth **************** */ 167 /* **************** wave_smooth **************** */
200 } 203 }
201 } 204 }
202 205
203 struct pn_actuator_desc builtin_wave_smooth = 206 struct pn_actuator_desc builtin_wave_smooth =
204 { 207 {
205 "wave_smooth", "Smooth out the waveform data used by the wave_* actuators", 208 "wave_smooth", "Smooth Waveform Data",
209 "Smooth out the waveform data used by the wave_* actuators",
206 0, wave_smooth_opts, 210 0, wave_smooth_opts,
207 NULL, NULL, wave_smooth_exec 211 NULL, NULL, wave_smooth_exec
208 }; 212 };
209 213
210 /* **************** wave_radial **************** */ 214 /* **************** wave_radial **************** */
236 } 240 }
237 }; 241 };
238 242
239 struct pn_actuator_desc builtin_wave_radial = 243 struct pn_actuator_desc builtin_wave_radial =
240 { 244 {
241 "wave_radial", "Draws a single waveform varying" 245 "wave_radial", "Radial Waveform",
246 "Draws a single waveform varying"
242 " radially from the center of the image", 247 " radially from the center of the image",
243 0, wave_radial_opts, 248 0, wave_radial_opts,
244 NULL, NULL, wave_radial_exec 249 NULL, NULL, wave_radial_exec
245 }; 250 };
246 251