]> Creatis software - CreaPhase.git/blob - octave_packages/vrml-1.0.13/vrml_group.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / vrml-1.0.13 / vrml_group.m
1 ## Copyright (C) 2002 Etienne Grossmann <etienne@egdn.net>
2 ##
3 ## This program is free software; you can redistribute it and/or modify it under
4 ## the terms of the GNU General Public License as published by the Free Software
5 ## Foundation; either version 3 of the License, or (at your option) any later
6 ## version.
7 ##
8 ## This program is distributed in the hope that it will be useful, but WITHOUT
9 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 ## details.
12 ##
13 ## You should have received a copy of the GNU General Public License along with
14 ## this program; if not, see <http://www.gnu.org/licenses/>.
15
16 ## v = vrml_group (s1, s2 ... ) - Form a group node with children s1,...
17
18 function v = vrml_group ( varargin )
19
20 if nargin == 0, return end
21
22 s = "";
23
24                                 # beginpre 2.1.38
25 ## if (nargin > 0) 
26 ##   varargin = list(varargin, all_va_args); 
27 ## end
28                                 # endpre 2.1.38
29 if nargin > 0, s = varargin{1}; end
30 if nargin > 1
31   for i = 2:nargin, s = [s,",\n", varargin{i}]; end
32 end
33 ## indent s
34 ni = 4;
35 s = [blanks(ni), strrep(s,"\n",["\n",blanks(ni)])(:)'];
36
37 v = sprintf (["Group {\n",\
38               "  children [\n",\
39               "%s",\
40               " ]\n",\
41               "}\n"],\
42              s);
43 endfunction
44