1 // =============================================================================
2 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 // Copyright (C) 2014 - Scilab Enterprises - Calixte DENIZET
5 // This file is distributed under the same license as the Scilab package.
6 // =============================================================================
8 // <-- TEST WITH GRAPHIC -->
10 // <-- Non-regression test for bug 13365 -->
12 // <-- Bugzilla URL -->
13 // http://bugzilla.scilab.org/13365
15 // <-- Short Description -->
16 // Data bounds not correctly updated in 3D
19 param3d([0,1], [0,1], [0,1]);
20 xsegs([2;3], [2;3], [2;3], 5);
23 assert_checkequal(a.data_bounds, [0 0 0; 3 3 3]);