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
|
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - INRIA - Jean-Baptiste SILVY <jean-baptiste.silvy@inria.fr>
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
// <-- TEST WITH GRAPHIC -->
// test to check that save and load are working properly
// check clip properties
clf();
x = 0:10;
z = sin(x)'*cos(x);
plot3d(x, x, z);
e = gce();
e.clip_state = "clipgrf";
plot3d(x ,x ,z + 1);
e = gce();
e.clip_box = [1, 2, 3, 4];
e.clip_state = "on";
// save the two curves
save(TMPDIR + "savePlot.scg", gcf());
// close window
delete(gcf());
// reload data
load(TMPDIR + "savePlot.scg");
axes = gca();
// check axes properties
surf1 = axes.children(1);
if (surf1.clip_box <> [1, 2, 3, 4]) then bugmes();quit;end
if (surf1.clip_state <> "on") then bugmes();quit;end
surf2 = axes.children(2);
if (surf2.clip_box <> []) then bugmes();quit;end
if (surf2.clip_state <> "clipgrf") then bugmes();quit;end
// same for grayplot
clf();
x = 0:10;
z = sin(x)'*cos(x);
grayplot(x, x, z)
e = gce();
e.clip_state = "clipgrf";
grayplot(x, x, z + 1);
e = gce();
e.clip_box = [1, 2, 3, 4];
e.clip_state = "on";
// save the two curves
save(TMPDIR + "savePlot.scg", gcf());
// close window
delete(gcf());
// reload data
load(TMPDIR + "savePlot.scg");
axes = gca();
// check axes properties
surf1 = axes.children(1);
if (surf1.clip_box <> [1, 2, 3, 4]) then bugmes();quit;end
if (surf1.clip_state <> "on") then bugmes();quit;end
surf2 = axes.children(2);
if (surf2.clip_box <> []) then bugmes();quit;end
if (surf2.clip_state <> "clipgrf") then bugmes();quit;end
// same for Matplot
clf();
x = 0:10;
z = sin(x)'*cos(x);
Matplot(z)
e = gce();
e.clip_state = "clipgrf";
Matplot(z + 1);
e = gce();
e.clip_box = [1, 2, 3, 4];
e.clip_state = "on";
// save the two curves
save(TMPDIR + "savePlot.scg", gcf());
// close window
delete(gcf());
// reload data
load(TMPDIR + "savePlot.scg");
axes = gca();
// check axes properties
surf1 = axes.children(1);
if (surf1.clip_box <> [1, 2, 3, 4]) then bugmes();quit;end
if (surf1.clip_state <> "on") then bugmes();quit;end
surf2 = axes.children(2);
if (surf2.clip_box <> []) then bugmes();quit;end
if (surf2.clip_state <> "clipgrf") then bugmes();quit;end
// same for fec
clf();
x = 0:10;
z = sin(x)'*cos(x);
Sgrayplot(x, x, z)
e = gce();
e = e.children(1);
e.clip_state = "clipgrf";
Sgrayplot(x, x, z + 1)
e = gce();
e = e.children(1);
e.clip_box = [1, 2, 3, 4];
e.clip_state = "on";
// save the two curves
save(TMPDIR + "savePlot.scg", gcf());
// close window
delete(gcf());
// reload data
load(TMPDIR + "savePlot.scg");
axes = gca();
// check axes properties
surf1 = axes.children(1).children(1);
if (surf1.clip_box <> [1, 2, 3, 4]) then bugmes();quit;end
if (surf1.clip_state <> "on") then bugmes();quit;end
surf2 = axes.children(2).children(1);
if (surf2.clip_box <> []) then bugmes();quit;end
if (surf2.clip_state <> "clipgrf") then bugmes();quit;end
|