comparison scripts/deprecated/delaunay3.m @ 19679:ebd27d8c63fd

update default branch to release as 4.0 Now that we plan to release default instead of the gui-release branch as 4.0, restore functions removed from the default branch. * java_new.m, default_save_options.m, gen_doc_cache.m, interp1q.m, isequalwithequalnans.m, java_convert_matrix.m, java_debug.m, java_invoke.m, java_unsigned_conversion.m, javafields.m, javamethods.m, re_read_readline_init_file.m, read_readline_init_file.m, saving_history.m: Restore deprecated functions. * scripts/deprecated/module.mk: Update. * NEWS: Update. * configure.ac (AC_INIT): Set version to 3.9.0+. (OCTAVE_MAJOR_VERSION): Now 3. (OCTAVE_MINOR_VERSION): Now 9.
author John W. Eaton <jwe@octave.org>
date Fri, 30 Jan 2015 11:51:45 -0500
parents 0e1f5a750d00
children 4197fc428c7d
comparison
equal deleted inserted replaced
19678:a615049dde18 19679:ebd27d8c63fd
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {@var{tetr} =} delaunay3 (@var{x}, @var{y}, @var{z}) 20 ## @deftypefn {Function File} {@var{tetr} =} delaunay3 (@var{x}, @var{y}, @var{z})
21 ## @deftypefnx {Function File} {@var{tetr} =} delaunay3 (@var{x}, @var{y}, @var{z}, @var{options}) 21 ## @deftypefnx {Function File} {@var{tetr} =} delaunay3 (@var{x}, @var{y}, @var{z}, @var{options})
22 ## 22 ##
23 ## @code{delaunay3} is deprecated and will be removed in Octave version 4.6. 23 ## @code{delaunay3} is deprecated and will be removed in Octave version 4.4.
24 ## Please use @code{delaunay} in all new code. 24 ## Please use @code{delaunay} in all new code.
25 ## 25 ##
26 ## Compute the Delaunay triangulation for a 3-D set of points. 26 ## Compute the Delaunay triangulation for a 3-D set of points.
27 ## The return value @var{tetr} is a set of tetrahedrons which satisfies the 27 ## The return value @var{tetr} is a set of tetrahedrons which satisfies the
28 ## Delaunay circum-circle criterion, i.e., only a single data point from 28 ## Delaunay circum-circle criterion, i.e., only a single data point from
48 ## 48 ##
49 ## @seealso{delaunay, delaunayn, convhull, voronoi, tetramesh} 49 ## @seealso{delaunay, delaunayn, convhull, voronoi, tetramesh}
50 ## @end deftypefn 50 ## @end deftypefn
51 51
52 ## Author: Kai Habel <kai.habel@gmx.de> 52 ## Author: Kai Habel <kai.habel@gmx.de>
53
54 ## Deprecated in 4.0
53 55
54 function tetr = delaunay3 (x, y, z, options) 56 function tetr = delaunay3 (x, y, z, options)
55 57
56 persistent warned = false; 58 persistent warned = false;
57 if (! warned) 59 if (! warned)