From: <et...@us...> - 2012-06-08 18:09:39
|
Revision: 10601 http://octave.svn.sourceforge.net/octave/?rev=10601&view=rev Author: etienne Date: 2012-06-08 18:09:31 +0000 (Fri, 08 Jun 2012) Log Message: ----------- Put back minimal data2vrml() Added Paths: ----------- trunk/octave-forge/main/vrml/inst/data2vrml.m Added: trunk/octave-forge/main/vrml/inst/data2vrml.m =================================================================== --- trunk/octave-forge/main/vrml/inst/data2vrml.m (rev 0) +++ trunk/octave-forge/main/vrml/inst/data2vrml.m 2012-06-08 18:09:31 UTC (rev 10601) @@ -0,0 +1,40 @@ +## Copyright (C) 2012 Etienne Grossmann <et...@eg...> +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see <http://www.gnu.org/licenses/>. + +## s = data2vrml (typeStr, value) - Convert 'value' to VRML code of type typeStr +## +## TODO: Improve this function +## +## If typeStr is "SFBool", then s is "TRUE" or "FALSE" +## If typeStr is "MFString", then s is sprintf ("%s", value) +## otherwise s is sprintf ("%f", value) +## +function s = data2vrml (typeStr, value) + +if strcmp (typeStr, "SFBool") + + if value, s = "TRUE"; + else s = "FALSE"; + endif + +elseif strcmp (typeStr, "MFSTring") + + s = sprintf ("%s", value); + +else + + s = sprintf ("%f", value); + +end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |