1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - INRIA - Pierre MARECHAL
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
//
function demo_misc()
global margin_x;
global margin_y;
global padding_x;
global padding_y;
global frame_w;
global frame_h;
global plot_w;
global plot_h;
// Parameters
// =========================================================================
frame_w = 200; // Frame width
frame_h = 330; // Frame height
plot_w = 600; // Plot width
plot_h = 550; // Plot height
margin_x = 15; // Horizontal margin between each elements
margin_y = 15; // Vertical margin between each elements
padding_x = 10; // Horizontal padding between each elements
padding_y = 10; // Vertical padding between each elements
defaultfont = "arial"; // Default Font
// Figure creation
// =========================================================================
axes_w = 3*margin_x + frame_w + plot_w; // axes width
axes_h = 2*margin_y + max(frame_h,plot_h); // axes height
demo_plot3d = figure(100001);
demo_plot3d.background = -2;
demo_plot3d.color_map = jetcolormap(128);
demo_plot3d.figure_position = [0 0];
demo_plot3d.axes_size = [axes_w axes_h];
demo_plot3d.figure_name = gettext("Colormap");
my_frame_pos_x = margin_x;
my_frame_pos_y = (axes_h/2-frame_h/2);
// Frames creation [Control Panel]
// =========================================================================
my_frame = uicontrol( ...
"parent" , demo_plot3d,...
"relief" , "groove",...
"style" , "frame",...
"units" , "pixels",...
"position" , [ my_frame_pos_x my_frame_pos_y frame_w frame_h],...
"fontname" , "arial",...
"fontunits" , "points",...
"fontsize" , 13,...
"fontweight" , "bold", ...
"horizontalalignment" , "center", ...
"background" , [1 1 1], ...
"tag" , "frame_control" ...
);
// Frame title
my_frame_title = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "text",...
"string" , "Colormap",...
"units" , "pixels",...
"position" , [ 30+my_frame_pos_x my_frame_pos_y+frame_h-10 frame_w-60 20 ],...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 14,...
"horizontalalignment" , "center", ...
"background" , [1 1 1], ...
"tag" , "title_frame_control" ...
);
// Colormap frame creation
// =========================================================================
my_cmap_frame_w = frame_w;
my_cmap_frame_h = frame_h;
// Colormap : Jetcolormap
jetcolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Jet"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-50 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 1, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "jetcolormap_radio");
// Colormap : HSVcolormap
HSVcolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("HSV"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-70 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "HSVcolormap_radio");
// Colormap : Hotcolormap
hotcolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Hot"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-90 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "hotcolormap_radio");
// Colormap : Graycolormap
graycolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Gray"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-110 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "graycolormap_radio");
// Colormap : Wintercolormap
wintercolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Winter"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-130 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "wintercolormap_radio");
// Colormap : Springcolormap
springcolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Spring"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-150 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "springcolormap_radio");
// Colormap : Summercolormap
summercolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Summer"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-170 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "summercolormap_radio");
// Colormap : Autumncolormap
autumncolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Autumn"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-190 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "autumncolormap_radio");
// Colormap : Bonecolormap
bonecolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Bone"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-210 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "bonecolormap_radio");
// Colormap : Coppercolormap
coppercolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Copper"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-230 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "coppercolormap_radio");
// Colormap : Pinkcolormap
pinkcolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Pink"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-250 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "pinkcolormap_radio");
// Colormap : Rainbowcolormap
rainbowcolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Rainbow"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-270 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "rainbowcolormap_radio");
// Colormap : Oceancolormap
oceancolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("Ocean"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-290 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "oceancolormap_radio");
// Colormap : Whitecolormap
whitecolormap_radio = uicontrol( ...
"parent" , demo_plot3d,...
"style" , "radiobutton",...
"string" , gettext("White"),...
"position" , [ my_frame_pos_x+10 my_frame_pos_y+my_cmap_frame_h-310 my_cmap_frame_w-25 15],...
"horizontalalignment", "left",...
"fontname" , defaultfont,...
"fontunits" , "points",...
"fontsize" , 10,...
"value" , 0, ...
"background" , [1 1 1], ...
"callback" , "demo_update_colormap",...
"tag" , "whitecolormap_radio");
// Plots creation
// =========================================================================
drawlater();
my_plot_region_pos_x = ((2*margin_x+frame_w)/axes_w);
my_plot_region_pos_y = 0;
my_plot_region_w = 1-my_plot_region_pos_x;
my_plot_region_h = 1;
// First plot : grayplot(); top - left
my_plot_1_axes = newaxes();
my_plot_1_pos_x = ((2*margin_x+frame_w)/axes_w);
my_plot_1_pos_y = 1/2;
my_plot_1_w = (1-my_plot_region_pos_x)/2;
my_plot_1_h = 1/2;
my_plot_1_axes.axes_bounds = [ my_plot_1_pos_x my_plot_1_pos_y my_plot_1_w my_plot_1_h ];
grayplot();
// Second plot : plot3d1(); top right
my_plot_2_axes = newaxes();
my_plot_2_pos_x = ((2*margin_x+frame_w)/axes_w) + my_plot_region_w/2;
my_plot_2_pos_y = 1/2;
my_plot_2_w = (1-my_plot_region_pos_x)/2;
my_plot_2_h = 1/2;
my_plot_2_axes.axes_bounds = [ my_plot_2_pos_x my_plot_2_pos_y my_plot_2_w my_plot_2_h ];
plot3d1();
// Third plot : grayplot(); bottom - left
my_plot_3_axes = newaxes();
my_plot_3_pos_x = ((2*margin_x+frame_w)/axes_w);
my_plot_3_pos_y = 0;
my_plot_3_w = (1-my_plot_region_pos_x)/2;
my_plot_3_h = 1/2;
my_plot_3_axes.axes_bounds = [ my_plot_3_pos_x my_plot_3_pos_y my_plot_3_w my_plot_3_h ];
grayplot();
// Fourth plot : knot(); bottom - right
my_plot_4_axes = newaxes();
my_plot_4_pos_x = ((2*margin_x+frame_w)/axes_w) + my_plot_region_w/2;
my_plot_4_pos_y = 0;
my_plot_4_w = (1-my_plot_region_pos_x)/2;
my_plot_4_h = 1/2;
my_plot_4_axes.axes_bounds = [ my_plot_4_pos_x my_plot_4_pos_y my_plot_4_w my_plot_4_h ];
deff("[x,y,z]=knot(u,v)",["vv=ones(v)";"uu=ones(u);";
"x=(5.*cos(u)+cos(u).*cos(v))";
"y=(5.*sin(u)+sin(u).*cos(v))";
"z=(uu.*sin(v))";])
nx=60;
Nx=(0:nx)/nx;
ny=20;
Ny=(0:ny)/ny;
[xx,yy,zz]=eval3dp(knot,2*%pi*Nx,2*%pi*Ny);
XXX=[-xx xx];
YYY=[-yy zz];
ZZZ=[-zz yy];
kk1=[1:size(zz,2)];
kk1=modulo(kk1,60);
kk2=kk1;
KKK=list(ZZZ,[kk1 kk2]);
plot3d(XXX,YYY,KKK,35,70," @ @ ",[2,1,4],[-6,6,-6,6,-6,6]);
// define colormap
colormapSize = 128;
f = gcf();
f.color_map = jetcolormap(128);
drawnow();
endfunction
function demo_update_colormap()
my_figure = gcf();
my_plot_axes = gca();
my_figure.immediate_drawing = "off";
set(findobj("tag", "jetcolormap_radio") , "value", 0);
set(findobj("tag", "hotcolormap_radio") , "value", 0);
set(findobj("tag", "graycolormap_radio") , "value", 0);
set(findobj("tag", "wintercolormap_radio") , "value", 0);
set(findobj("tag", "springcolormap_radio") , "value", 0);
set(findobj("tag", "summercolormap_radio") , "value", 0);
set(findobj("tag", "autumncolormap_radio") , "value", 0);
set(findobj("tag", "bonecolormap_radio") , "value", 0);
set(findobj("tag", "coppercolormap_radio") , "value", 0);
set(findobj("tag", "pinkcolormap_radio") , "value", 0);
set(findobj("tag", "HSVcolormap_radio") , "value", 0);
set(findobj("tag", "rainbowcolormap_radio") , "value", 0);
set(findobj("tag", "oceancolormap_radio") , "value", 0);
set(findobj("tag", "whitecolormap_radio") , "value", 0);
set(gcbo, "value", 1);
my_wanted_colormap = get(gcbo,"tag");
if get(gcbo, "tag") == "jetcolormap_radio" then
my_figure.color_map = jetcolormap(128);
elseif get(gcbo, "tag") == "hotcolormap_radio" then
my_figure.color_map = hotcolormap(128);
elseif get(gcbo, "tag") == "graycolormap_radio" then
my_figure.color_map = graycolormap(128);
elseif get(gcbo, "tag") == "wintercolormap_radio" then
my_figure.color_map = wintercolormap(128);
elseif get(gcbo, "tag") == "springcolormap_radio" then
my_figure.color_map = springcolormap(128);
elseif get(gcbo, "tag") == "summercolormap_radio" then
my_figure.color_map = summercolormap(128);
elseif get(gcbo, "tag") == "autumncolormap_radio" then
my_figure.color_map = autumncolormap(128);
elseif get(gcbo, "tag") == "bonecolormap_radio" then
my_figure.color_map = bonecolormap(128);
elseif get(gcbo, "tag") == "coppercolormap_radio" then
my_figure.color_map = coppercolormap(128);
elseif get(gcbo, "tag") == "pinkcolormap_radio" then
my_figure.color_map = pinkcolormap(128);
elseif get(gcbo, "tag") == "HSVcolormap_radio" then
my_figure.color_map = hsvcolormap(128);
elseif get(gcbo, "tag") == "rainbowcolormap_radio" then
my_figure.color_map = rainbowcolormap(128);
elseif get(gcbo, "tag") == "oceancolormap_radio" then
my_figure.color_map = oceancolormap(128);
elseif get(gcbo, "tag") == "whitecolormap_radio" then
my_figure.color_map = whitecolormap(128);
end
// Background
my_plot_axes.background = color(240,240,240);
my_figure.immediate_drawing = "on";
endfunction
|