You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(128) |
Dec
(65) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(48) |
Feb
(132) |
Mar
(95) |
Apr
(47) |
May
(54) |
Jun
(2) |
Jul
(57) |
Aug
(109) |
Sep
(131) |
Oct
(186) |
Nov
(105) |
Dec
(78) |
2007 |
Jan
(125) |
Feb
(105) |
Mar
(52) |
Apr
(104) |
May
(63) |
Jun
(116) |
Jul
(76) |
Aug
|
Sep
(18) |
Oct
(93) |
Nov
(110) |
Dec
(169) |
2008 |
Jan
(90) |
Feb
(64) |
Mar
(41) |
Apr
(23) |
May
(6) |
Jun
(18) |
Jul
(10) |
Aug
(61) |
Sep
(139) |
Oct
(50) |
Nov
(55) |
Dec
(2) |
2009 |
Jan
|
Feb
(1) |
Mar
(62) |
Apr
(22) |
May
(17) |
Jun
(19) |
Jul
(40) |
Aug
(21) |
Sep
|
Oct
(40) |
Nov
(23) |
Dec
|
2010 |
Jan
(14) |
Feb
(40) |
Mar
(9) |
Apr
(11) |
May
(19) |
Jun
(4) |
Jul
(10) |
Aug
(22) |
Sep
(15) |
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(13) |
Feb
(10) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(33) |
May
(20) |
Jun
|
Jul
(8) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Braden M. <br...@us...> - 2007-07-01 03:01:30
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20845 Modified Files: ChangeLog Log Message: Initialize rotation. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1524 retrieving revision 1.1525 diff -C2 -d -r1.1524 -r1.1525 *** ChangeLog 1 Jul 2007 01:38:39 -0000 1.1524 --- ChangeLog 1 Jul 2007 03:01:27 -0000 1.1525 *************** *** 1,4 **** --- 1,9 ---- 2007-06-30 Braden McDaniel <br...@en...> + * src/libopenvrml-gl/openvrml/gl/viewer.cpp + (trackball(float, float, float, float)): Initialize rotation. + + 2007-06-30 Braden McDaniel <br...@en...> + Expose common attributes of lighting nodes via openvrml::light_node. |
From: Braden M. <br...@us...> - 2007-07-01 02:07:37
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21147/src/libopenvrml/openvrml Modified Files: node.cpp node.h vrml97node.cpp Log Message: Expose common attributes of lighting nodes via openvrml::light_node. Index: node.h =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.h,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** node.h 1 Jun 2007 05:34:02 -0000 1.60 --- node.h 1 Jul 2007 01:38:40 -0000 1.61 *************** *** 1046,1049 **** --- 1046,1054 ---- virtual ~light_node() OPENVRML_NOTHROW = 0; + float ambient_intensity() const OPENVRML_NOTHROW; + float intensity() const OPENVRML_NOTHROW; + bool on() const OPENVRML_NOTHROW; + const openvrml::color & color() const OPENVRML_NOTHROW; + protected: light_node(const node_type & type, *************** *** 1053,1056 **** --- 1058,1066 ---- private: virtual light_node * to_light() OPENVRML_NOTHROW; + + virtual float do_ambient_intensity() const OPENVRML_NOTHROW = 0; + virtual float do_intensity() const OPENVRML_NOTHROW = 0; + virtual bool do_on() const OPENVRML_NOTHROW = 0; + virtual const openvrml::color & do_color() const OPENVRML_NOTHROW = 0; }; Index: vrml97node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v retrieving revision 1.131 retrieving revision 1.132 diff -C2 -d -r1.131 -r1.132 *** vrml97node.cpp 21 Jun 2007 20:53:18 -0000 1.131 --- vrml97node.cpp 1 Jul 2007 01:38:40 -0000 1.132 *************** *** 1585,1597 **** virtual ~abstract_light_node() OPENVRML_NOTHROW = 0; - float ambient_intensity() const OPENVRML_NOTHROW; - float intensity() const OPENVRML_NOTHROW; - bool on() const OPENVRML_NOTHROW; - const openvrml::color & color() const OPENVRML_NOTHROW; - protected: abstract_light_node( const node_type & type, const boost::shared_ptr<openvrml::scope> & scope); }; --- 1585,1598 ---- virtual ~abstract_light_node() OPENVRML_NOTHROW = 0; protected: abstract_light_node( const node_type & type, const boost::shared_ptr<openvrml::scope> & scope); + + private: + virtual float do_ambient_intensity() const OPENVRML_NOTHROW; + virtual float do_intensity() const OPENVRML_NOTHROW; + virtual bool do_on() const OPENVRML_NOTHROW; + virtual const openvrml::color & do_color() const OPENVRML_NOTHROW; }; *************** *** 1654,1660 **** */ template <typename Derived> ! float abstract_light_node<Derived>::ambient_intensity() const OPENVRML_NOTHROW { ! return this->ambient_intensity_.sffloat::value; } --- 1655,1662 ---- */ template <typename Derived> ! float abstract_light_node<Derived>::do_ambient_intensity() const ! OPENVRML_NOTHROW { ! return this->ambient_intensity_.sffloat::value(); } *************** *** 1665,1671 **** */ template <typename Derived> ! float abstract_light_node<Derived>::intensity() const OPENVRML_NOTHROW { ! return this->intensity_.sffloat::value; } --- 1667,1673 ---- */ template <typename Derived> ! float abstract_light_node<Derived>::do_intensity() const OPENVRML_NOTHROW { ! return this->intensity_.sffloat::value(); } *************** *** 1676,1682 **** */ template <typename Derived> ! bool abstract_light_node<Derived>::on() const OPENVRML_NOTHROW { ! return this->on_.sfbool::value; } --- 1678,1684 ---- */ template <typename Derived> ! bool abstract_light_node<Derived>::do_on() const OPENVRML_NOTHROW { ! return this->on_.sfbool::value(); } *************** *** 1688,1694 **** template <typename Derived> const openvrml::color & ! abstract_light_node<Derived>::color() const OPENVRML_NOTHROW { ! return this->color_.sfcolor::value; } --- 1690,1696 ---- template <typename Derived> const openvrml::color & ! abstract_light_node<Derived>::do_color() const OPENVRML_NOTHROW { ! return this->color_.sfcolor::value(); } Index: node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.cpp,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** node.cpp 1 Jun 2007 05:34:02 -0000 1.93 --- node.cpp 1 Jul 2007 01:38:40 -0000 1.94 *************** *** 1471,1475 **** * @var class openvrml::node::exposedfield<sfbool> * ! * @brief <code>sfbool</code> <code>exposedfield</code>. */ --- 1471,1475 ---- * @var class openvrml::node::exposedfield<sfbool> * ! * @brief @c sfbool @c exposedfield. */ [...1443 lines suppressed...] --- 4568,4573 ---- * @brief Construct. * ! * @param[in] type the @c node_type associated with the @c node. ! * @param[in] scope the @c scope the @c node belongs to. */ openvrml::texture_transform_node:: *************** *** 4563,4567 **** * @brief Update with the current time. * ! * This function delegates to @c time_dependent_node::do_update. * * @param[in] time the current time. --- 4643,4647 ---- * @brief Update with the current time. * ! * This function delegates to @c #do_update. * * @param[in] time the current time. |
From: Braden M. <br...@us...> - 2007-07-01 01:53:40
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21147 Modified Files: ChangeLog Log Message: Expose common attributes of lighting nodes via openvrml::light_node. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1523 retrieving revision 1.1524 diff -C2 -d -r1.1523 -r1.1524 *** ChangeLog 30 Jun 2007 23:07:51 -0000 1.1523 --- ChangeLog 1 Jul 2007 01:38:39 -0000 1.1524 *************** *** 1,3 **** ! 2007-06-27 Braden McDaniel <br...@en...> automake no longer requires that M4 macros be explicitly --- 1,22 ---- ! 2007-06-30 Braden McDaniel <br...@en...> ! ! Expose common attributes of lighting nodes via ! openvrml::light_node. ! ! * src/libopenvrml/openvrml/node.cpp ! (openvrml::light_node::ambient_intensity() const): Added function. ! (openvrml::light_node::intensity() const): Added function. ! (openvrml::light_node::on() const): Added function. ! (openvrml::light_node::color() const): Added function. ! * src/libopenvrml/openvrml/node.h ! (openvrml::light_node): Added member functions ambient_intensity, ! do_ambient_intensity, intensity, do_intensity, on, do_on, color, ! do_color. ! * src/libopenvrml/openvrml/vrml97node.cpp ! (abstract_light_node): Removed functions ambient_intensity, ! intensity, on, color. Added virtual functions ! do_ambient_intensity, do_intensity, do_on, do_color. ! ! 2007-06-30 Braden McDaniel <br...@en...> automake no longer requires that M4 macros be explicitly |
From: Braden M. <br...@us...> - 2007-06-30 23:07:57
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29539 Modified Files: ChangeLog Makefile.am configure.ac Log Message: automake no longer requires that M4 macros be explicitly listed (in EXTRA_DIST) in order to be packaged. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.117 retrieving revision 1.118 diff -C2 -d -r1.117 -r1.118 *** configure.ac 21 Jun 2007 20:56:59 -0000 1.117 --- configure.ac 30 Jun 2007 23:07:52 -0000 1.118 *************** *** 4,8 **** AC_CONFIG_FILES([Makefile] [doc/Makefile] - [m4/Makefile] [ide-projects/Makefile] [models/Makefile] --- 4,7 ---- Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/Makefile.am,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** Makefile.am 24 Nov 2006 05:41:18 -0000 1.53 --- Makefile.am 30 Jun 2007 23:07:52 -0000 1.54 *************** *** 1,3 **** ! SUBDIRS = doc ide-projects m4 models lib java src mozilla-plugin examples tests ACLOCAL_AMFLAGS = -I m4 --- 1,3 ---- ! SUBDIRS = doc ide-projects models lib java src mozilla-plugin examples tests ACLOCAL_AMFLAGS = -I m4 Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1522 retrieving revision 1.1523 diff -C2 -d -r1.1522 -r1.1523 *** ChangeLog 21 Jun 2007 20:56:59 -0000 1.1522 --- ChangeLog 30 Jun 2007 23:07:51 -0000 1.1523 *************** *** 1,2 **** --- 1,13 ---- + 2007-06-27 Braden McDaniel <br...@en...> + + automake no longer requires that M4 macros be explicitly + listed (in EXTRA_DIST) in order to be packaged. + + * Makefile.am + * configure.ac + * m4/COPYING: Removed; a copy of the GPL is now in the package + root directory. + * m4/Makefile.am: Removed. + 2007-06-21 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-06-30 23:07:57
|
Update of /cvsroot/openvrml/openvrml/m4 In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29539/m4 Removed Files: COPYING Makefile.am Log Message: automake no longer requires that M4 macros be explicitly listed (in EXTRA_DIST) in order to be packaged. --- Makefile.am DELETED --- --- COPYING DELETED --- |
From: Braden M. <br...@us...> - 2007-06-21 20:57:07
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13782 Modified Files: ChangeLog configure.ac Log Message: Added option --with-libjs to enable use of libjs built from the stand-alone SpiderMonkey distribution. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.116 retrieving revision 1.117 diff -C2 -d -r1.116 -r1.117 *** configure.ac 2 Jun 2007 06:47:04 -0000 1.116 --- configure.ac 21 Jun 2007 20:56:59 -0000 1.117 *************** *** 127,136 **** ]) ! PKG_CHECK_MODULES([JS], [$REQUIRE_FIREFOX_JS], [mozilla_js_pkg=$REQUIRE_FIREFOX_JS], [PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], [mozilla_js_pkg=$REQUIRE_MOZILLA_JS], ! [have_js=no])]) # # openvrml-xembed and openvrml-player both use GOption, which was --- 127,138 ---- ]) ! have_libmozjs=yes PKG_CHECK_MODULES([JS], [$REQUIRE_FIREFOX_JS], [mozilla_js_pkg=$REQUIRE_FIREFOX_JS], [PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], [mozilla_js_pkg=$REQUIRE_MOZILLA_JS], ! [have_libmozjs=no])]) ! AC_CHECK_LIB([js], [JS_Init], [have_libjs=yes], [have_libjs=no]) ! # # openvrml-xembed and openvrml-player both use GOption, which was *************** *** 239,260 **** [AC_HELP_STRING([--disable-script-node-javascript], [disable Script node JavaScript support])]) if test "X$enable_script_node_javascript" = "Xno"; then JS_CFLAGS="" JS_LIBS="" else ! if test "X$have_js" = "Xno"; then ! AC_MSG_FAILURE([Mozilla JavaScript is required for Script node JavaScript support.]) fi ! if test -n "${OPENVRML_PKG_REQUIRES}"; then ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES}," fi ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES} ${mozilla_js_pkg}" ! AC_DEFINE([OPENVRML_ENABLE_SCRIPT_NODE_JAVASCRIPT], [1], [Defined if Script node JavaScript support is enabled.]) ! GRE_PATH=`$PKG_CONFIG --libs-only-L ${mozilla_js_pkg%% *} | sed -e 's/^-L//' -e 's/ *$//'` ! if test -n "${openvrml_run_path}" -a -n "${GRE_PATH}"; then ! openvrml_run_path=":${openvrml_run_path}" fi - openvrml_run_path="${GRE_PATH}${openvrml_run_path}" fi AC_SUBST([JS_CFLAGS]) --- 241,271 ---- [AC_HELP_STRING([--disable-script-node-javascript], [disable Script node JavaScript support])]) + AC_ARG_WITH([libjs], + [AC_HELP_STRING([--with-libjs], + [use libjs for JavaScript support])]) if test "X$enable_script_node_javascript" = "Xno"; then JS_CFLAGS="" JS_LIBS="" else ! if test X$with_libjs = Xyes; then ! JS_CFLAGS="" ! JS_LIBS="-ljs" fi ! if test X$have_libmozjs = Xno -a X$have_libjs = Xno; then ! AC_MSG_FAILURE([SpiderMonkey is required for Script node JavaScript support.]) fi ! if test X$with_libjs = Xno; then ! if test -n "${OPENVRML_PKG_REQUIRES}"; then ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES}," ! fi ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES} ${mozilla_js_pkg}" ! AC_DEFINE([OPENVRML_ENABLE_SCRIPT_NODE_JAVASCRIPT], [1], [Defined if Script node JavaScript support is enabled.]) ! GRE_PATH=`$PKG_CONFIG --libs-only-L ${mozilla_js_pkg%% *} | sed -e 's/^-L//' -e 's/ *$//'` ! if test -n "${openvrml_run_path}" -a -n "${GRE_PATH}"; then ! openvrml_run_path=":${openvrml_run_path}" ! fi ! openvrml_run_path="${GRE_PATH}${openvrml_run_path}" fi fi AC_SUBST([JS_CFLAGS]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1521 retrieving revision 1.1522 diff -C2 -d -r1.1521 -r1.1522 *** ChangeLog 21 Jun 2007 20:53:17 -0000 1.1521 --- ChangeLog 21 Jun 2007 20:56:59 -0000 1.1522 *************** *** 1,4 **** --- 1,9 ---- 2007-06-21 Braden McDaniel <br...@en...> + * configure.ac: Added option --with-libjs to enable use of libjs + built from the stand-alone SpiderMonkey distribution. + + 2007-06-21 Braden McDaniel <br...@en...> + * src/libopenvrml/openvrml/vrml97node.cpp: Wrap include of jpeglib.h in extern "C"; the MacPorts variant of the libjpeg |
From: Braden M. <br...@us...> - 2007-06-21 20:53:24
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12585 Modified Files: ChangeLog Log Message: Wrap include of jpeglib.h in extern "C"; the MacPorts variant of the libjpeg header doesn't do this. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1520 retrieving revision 1.1521 diff -C2 -d -r1.1520 -r1.1521 *** ChangeLog 6 Jun 2007 06:28:26 -0000 1.1520 --- ChangeLog 21 Jun 2007 20:53:17 -0000 1.1521 *************** *** 1,2 **** --- 1,8 ---- + 2007-06-21 Braden McDaniel <br...@en...> + + * src/libopenvrml/openvrml/vrml97node.cpp: Wrap include of + jpeglib.h in extern "C"; the MacPorts variant of the libjpeg + header doesn't do this. + 2007-06-06 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-06-21 20:53:23
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12585/src/libopenvrml/openvrml Modified Files: vrml97node.cpp Log Message: Wrap include of jpeglib.h in extern "C"; the MacPorts variant of the libjpeg header doesn't do this. Index: vrml97node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** vrml97node.cpp 1 Jun 2007 05:34:02 -0000 1.130 --- vrml97node.cpp 21 Jun 2007 20:53:18 -0000 1.131 *************** *** 31,35 **** --- 31,37 ---- # endif # ifdef OPENVRML_ENABLE_JPEG_TEXTURES + extern "C" { # include <jpeglib.h> + } # endif # include <algorithm> |
From: Braden M. <br...@us...> - 2007-06-06 06:28:27
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14807/src/libopenvrml/openvrml Modified Files: field_value.cpp field_value.h Log Message: Made constructors of mf* types taking a FieldValue::value_type inline. This should facilitate elision of a copy of the argument. Index: field_value.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/field_value.cpp,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** field_value.cpp 6 Mar 2007 07:24:01 -0000 1.30 --- field_value.cpp 6 Jun 2007 06:28:27 -0000 1.31 *************** *** 3539,3542 **** --- 3539,3544 ---- /** + * @fn openvrml::mfbool::mfbool(const value_type & value) + * * @brief Construct. * *************** *** 3545,3552 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfbool::mfbool(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 3547,3550 ---- *************** *** 3751,3754 **** --- 3749,3754 ---- /** + * @fn openvrml::mfcolor::mfcolor(const value_type & value) + * * @brief Construct. * *************** *** 3757,3764 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfcolor::mfcolor(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 3757,3760 ---- *************** *** 3962,3965 **** --- 3958,3963 ---- /** + * @fn openvrml::mfcolorrgba::mfcolorrgba(const value_type & value) + * * @brief Construct. * *************** *** 3968,3975 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfcolorrgba::mfcolorrgba(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 3966,3969 ---- *************** *** 4175,4178 **** --- 4169,4174 ---- /** + * @fn openvrml::mffloat::mffloat(const value_type & value) + * * @brief Construct. * *************** *** 4181,4188 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mffloat::mffloat(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 4177,4180 ---- *************** *** 4379,4383 **** */ openvrml::mfdouble::mfdouble(const std::vector<double>::size_type n, ! const double value) OPENVRML_THROW1(std::bad_alloc): field_value(std::vector<double>(n, value), value_type_constructor_tag()) --- 4371,4375 ---- */ openvrml::mfdouble::mfdouble(const std::vector<double>::size_type n, ! const double value) OPENVRML_THROW1(std::bad_alloc): field_value(std::vector<double>(n, value), value_type_constructor_tag()) *************** *** 4385,4388 **** --- 4377,4382 ---- /** + * @fn openvrml::mfdouble::mfdouble(const value_type & value) + * * @brief Construct. * *************** *** 4391,4398 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfdouble::mfdouble(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 4385,4388 ---- *************** *** 4595,4598 **** --- 4585,4590 ---- /** + * @fn openvrml::mfimage::mfimage(const value_type & value) + * * @brief Construct. * *************** *** 4601,4608 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfimage::mfimage(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 4593,4596 ---- *************** *** 4805,4808 **** --- 4793,4798 ---- /** + * @fn openvrml::mfint32::mfint32(const value_type & value) + * * @brief Construct. * *************** *** 4811,4818 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfint32::mfint32(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 4801,4804 ---- *************** *** 5016,5019 **** --- 5002,5007 ---- /** + * @fn openvrml::mfnode::mfnode(const value_type & value) + * * @brief Construct. * *************** *** 5022,5029 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfnode::mfnode(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 5010,5013 ---- *************** *** 5230,5233 **** --- 5214,5219 ---- /** + * @fn openvrml::mfrotation::mfrotation(const value_type & value) + * * @brief Construct. * *************** *** 5236,5243 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfrotation::mfrotation(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 5222,5225 ---- *************** *** 5426,5430 **** * @brief Construct. * ! * Creates an <code>mfstring</code> with @p n copies of @p value. * * @param[in] n the number elements in @a mfstring::value. --- 5408,5412 ---- * @brief Construct. * ! * Creates an @c mfstring with @p n copies of @p value. * * @param[in] n the number elements in @a mfstring::value. *************** *** 5444,5447 **** --- 5426,5431 ---- /** + * @fn openvrml::mfstring::mfstring(const value_type & value) + * * @brief Construct. * *************** *** 5450,5457 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfstring::mfstring(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 5434,5437 ---- *************** *** 5639,5643 **** * @brief Construct. * ! * Creates an <code>mftime</code> with @p n copies of @p value. * * @param[in] n the number of elements in @a mftime::value. --- 5619,5623 ---- * @brief Construct. * ! * Creates an @c mftime with @p n copies of @p value. * * @param[in] n the number of elements in @a mftime::value. *************** *** 5656,5659 **** --- 5636,5641 ---- /** + * @fn openvrml::mftime::mftime(const value_type & value) + * * @brief Construct. * *************** *** 5662,5669 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mftime::mftime(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 5644,5647 ---- *************** *** 5852,5856 **** * @brief Construct. * ! * Creates an <code>mfvec2f</code> with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec2f::value. --- 5830,5834 ---- * @brief Construct. * ! * Creates an @c mfvec2f with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec2f::value. *************** *** 5869,5872 **** --- 5847,5852 ---- /** + * @fn openvrml::mfvec2f::mfvec2f(const value_type & value) + * * @brief Construct. * *************** *** 5875,5882 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfvec2f::mfvec2f(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 5855,5858 ---- *************** *** 6063,6067 **** * @brief Construct. * ! * Creates an <code>mfvec2d</code> with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec2d::value. --- 6039,6043 ---- * @brief Construct. * ! * Creates an @c mfvec2d with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec2d::value. *************** *** 6080,6083 **** --- 6056,6061 ---- /** + * @fn openvrml::mfvec2d::mfvec2d(const value_type & value) + * * @brief Construct. * *************** *** 6086,6093 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfvec2d::mfvec2d(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 6064,6067 ---- *************** *** 6275,6279 **** * @brief Construct. * ! * Creates an <code>mfvec3f</code> with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec3f::value. --- 6249,6253 ---- * @brief Construct. * ! * Creates an @c mfvec3f with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec3f::value. *************** *** 6292,6295 **** --- 6266,6271 ---- /** + * @fn openvrml::mfvec3f::mfvec3f(const value_type & value) + * * @brief Construct. * *************** *** 6298,6305 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfvec3f::mfvec3f(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 6274,6277 ---- *************** *** 6487,6491 **** * @brief Construct. * ! * Creates an <code>mfvec3d</code> with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec3d::value. --- 6459,6463 ---- * @brief Construct. * ! * Creates an @c mfvec3d with @p n copies of @p value. * * @param[in] n the number elements in @a mfvec3d::value. *************** *** 6504,6507 **** --- 6476,6481 ---- /** + * @fn openvrml::mfvec3d::mfvec3d(const value_type & value) + * * @brief Construct. * *************** *** 6510,6517 **** * @exception std::bad_alloc if memory allocation fails. */ - openvrml::mfvec3d::mfvec3d(const value_type & value) - OPENVRML_THROW1(std::bad_alloc): - field_value(value, value_type_constructor_tag()) - {} /** --- 6484,6487 ---- Index: field_value.h =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/field_value.h,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** field_value.h 15 May 2007 04:06:11 -0000 1.23 --- field_value.h 6 Jun 2007 06:28:27 -0000 1.24 *************** *** 825,828 **** --- 825,833 ---- OPENVRML_NOTHROW; + inline mfbool::mfbool(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfcolor : public field_value { *************** *** 861,864 **** --- 866,874 ---- OPENVRML_NOTHROW; + inline mfcolor::mfcolor(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfcolorrgba : public field_value { *************** *** 899,902 **** --- 909,917 ---- OPENVRML_NOTHROW; + inline mfcolorrgba::mfcolorrgba(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mffloat : public field_value { *************** *** 935,938 **** --- 950,958 ---- OPENVRML_NOTHROW; + inline mffloat::mffloat(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfdouble : public field_value { *************** *** 971,974 **** --- 991,999 ---- OPENVRML_NOTHROW; + inline mfdouble::mfdouble(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfimage : public field_value { *************** *** 1007,1010 **** --- 1032,1040 ---- OPENVRML_NOTHROW; + inline mfimage::mfimage(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfint32 : public field_value { *************** *** 1041,1044 **** --- 1071,1079 ---- OPENVRML_NOTHROW; + inline openvrml::mfint32::mfint32(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfnode : public field_value { *************** *** 1077,1080 **** --- 1112,1120 ---- OPENVRML_NOTHROW; + inline openvrml::mfnode::mfnode(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfrotation : public field_value { *************** *** 1115,1118 **** --- 1155,1163 ---- OPENVRML_NOTHROW; + inline mfrotation::mfrotation(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfstring : public field_value { *************** *** 1151,1154 **** --- 1196,1204 ---- OPENVRML_NOTHROW; + inline mfstring::mfstring(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mftime : public field_value { *************** *** 1186,1189 **** --- 1236,1244 ---- OPENVRML_NOTHROW; + inline mftime::mftime(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfvec2f : public field_value { *************** *** 1222,1225 **** --- 1277,1285 ---- OPENVRML_NOTHROW; + inline mfvec2f::mfvec2f(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfvec2d : public field_value { *************** *** 1258,1261 **** --- 1318,1326 ---- OPENVRML_NOTHROW; + inline mfvec2d::mfvec2d(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + class OPENVRML_API mfvec3f : public field_value { *************** *** 1294,1297 **** --- 1359,1368 ---- OPENVRML_NOTHROW; + inline mfvec3f::mfvec3f(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} + + class OPENVRML_API mfvec3d : public field_value { public: *************** *** 1328,1331 **** --- 1399,1407 ---- OPENVRML_API bool operator!=(const mfvec3d & lhs, const mfvec3d & rhs) OPENVRML_NOTHROW; + + inline mfvec3d::mfvec3d(const value_type & value) + OPENVRML_THROW1(std::bad_alloc): + field_value(value, value_type_constructor_tag()) + {} } |
From: Braden M. <br...@us...> - 2007-06-06 06:28:26
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14807 Modified Files: ChangeLog Log Message: Made constructors of mf* types taking a FieldValue::value_type inline. This should facilitate elision of a copy of the argument. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1519 retrieving revision 1.1520 diff -C2 -d -r1.1519 -r1.1520 *** ChangeLog 2 Jun 2007 06:47:04 -0000 1.1519 --- ChangeLog 6 Jun 2007 06:28:26 -0000 1.1520 *************** *** 1,2 **** --- 1,10 ---- + 2007-06-06 Braden McDaniel <br...@en...> + + Made constructors of mf* types taking a FieldValue::value_type + inline. This should facilitate elision of a copy of the argument. + + * src/libopenvrml/openvrml/field_value.cpp + * src/libopenvrml/openvrml/field_value.h + 2007-06-02 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-06-05 20:28:37
|
Update of /cvsroot/openvrml/htdocs/wiki/uploads In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/uploads Removed Files: .htaccess Log Message: Removed wiki. --- .htaccess DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:35
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/wikilens In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/wikilens Removed Files: themeinfo.php Log Message: Removed wiki. --- themeinfo.php DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:35
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/wikilens/templates In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/wikilens/templates Removed Files: head.tmpl navbar.tmpl Log Message: Removed wiki. --- head.tmpl DELETED --- --- navbar.tmpl DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:35
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/wikilens/images In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/wikilens/images Removed Files: RateItAction.png RateItCancel.png RateItCancelN.png RateItNk0.png RateItNk1.png RateItOk0.png RateItOk1.png RateItRk0.png RateItRk1.png Log Message: Removed wiki. --- RateItAction.png DELETED --- --- RateItCancelN.png DELETED --- --- RateItCancel.png DELETED --- --- RateItOk1.png DELETED --- --- RateItOk0.png DELETED --- --- RateItNk0.png DELETED --- --- RateItNk1.png DELETED --- --- RateItRk0.png DELETED --- --- RateItRk1.png DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:33
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/smaller/templates In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/smaller/templates Removed Files: actionbar.tmpl info.tmpl navbar.tmpl Log Message: Removed wiki. --- navbar.tmpl DELETED --- --- actionbar.tmpl DELETED --- --- info.tmpl DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:33
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/smaller In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/smaller Removed Files: themeinfo.php Log Message: Removed wiki. --- themeinfo.php DELETED --- |
Update of /cvsroot/openvrml/htdocs/wiki/themes/default/templates In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/default/templates Removed Files: MAP.pdf README actionbar.tmpl addcomment.tmpl blogform.tmpl body.tmpl bottom.tmpl browse-footer.tmpl browse.tmpl comment.tmpl content.tmpl debug.tmpl dialog.tmpl editpage.tmpl frame-footer.tmpl frame-header.tmpl frameset.tmpl head.tmpl homepage.tmpl html.tmpl htmldump.tmpl info.tmpl login.tmpl navbar.tmpl nochanges.tmpl online.tmpl redirect.tmpl savepage.tmpl signin.tmpl top.tmpl userprefs.tmpl viewsource.tmpl wikiblog.tmpl Log Message: Removed wiki. --- bottom.tmpl DELETED --- --- body.tmpl DELETED --- --- savepage.tmpl DELETED --- --- blogform.tmpl DELETED --- --- wikiblog.tmpl DELETED --- --- frame-header.tmpl DELETED --- --- top.tmpl DELETED --- --- frame-footer.tmpl DELETED --- --- browse-footer.tmpl DELETED --- --- userprefs.tmpl DELETED --- --- info.tmpl DELETED --- --- editpage.tmpl DELETED --- --- login.tmpl DELETED --- --- dialog.tmpl DELETED --- --- README DELETED --- --- browse.tmpl DELETED --- --- actionbar.tmpl DELETED --- --- head.tmpl DELETED --- --- htmldump.tmpl DELETED --- --- homepage.tmpl DELETED --- --- nochanges.tmpl DELETED --- --- viewsource.tmpl DELETED --- --- comment.tmpl DELETED --- --- debug.tmpl DELETED --- --- addcomment.tmpl DELETED --- --- signin.tmpl DELETED --- --- content.tmpl DELETED --- --- online.tmpl DELETED --- --- MAP.pdf DELETED --- --- redirect.tmpl DELETED --- --- html.tmpl DELETED --- --- navbar.tmpl DELETED --- --- frameset.tmpl DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:31
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/Wordpress In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/Wordpress Removed Files: Wordpress.css themeinfo.php Log Message: Removed wiki. --- themeinfo.php DELETED --- --- Wordpress.css DELETED --- |
Update of /cvsroot/openvrml/htdocs/wiki/themes/default/images In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/default/images Removed Files: cellpic1.png favicon.ico ftp.png http.png https.png interwiki.png leftbar.png logo.png mailto.png mainbar.png png.png rightbar.png signature.png url.png whosonline.png wikiuser.png Log Message: Removed wiki. --- interwiki.png DELETED --- --- ftp.png DELETED --- --- mailto.png DELETED --- --- cellpic1.png DELETED --- --- rightbar.png DELETED --- --- url.png DELETED --- --- favicon.ico DELETED --- --- https.png DELETED --- --- logo.png DELETED --- --- whosonline.png DELETED --- --- signature.png DELETED --- --- leftbar.png DELETED --- --- mainbar.png DELETED --- --- http.png DELETED --- --- png.png DELETED --- --- wikiuser.png DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:31
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/default/buttons/en In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/default/buttons/en Removed Files: Next.gif Previous.gif Log Message: Removed wiki. --- Previous.gif DELETED --- --- Next.gif DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:30
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/default/buttons In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/default/buttons Removed Files: RSS.png asc_order.png desc_order.png no_order.png valid-xhtml10.png vcss.gif vcss.png vxhtml10.gif Log Message: Removed wiki. --- no_order.png DELETED --- --- vxhtml10.gif DELETED --- --- vcss.png DELETED --- --- desc_order.png DELETED --- --- vcss.gif DELETED --- --- asc_order.png DELETED --- --- RSS.png DELETED --- --- valid-xhtml10.png DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:30
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/SpaceWiki/lib In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/SpaceWiki/lib Removed Files: RecentChanges.php Log Message: Removed wiki. --- RecentChanges.php DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:28
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/SpaceWiki In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/SpaceWiki Removed Files: SpaceWiki-gravimetric.css SpaceWiki.css preview.png themeinfo.php Log Message: Removed wiki. --- preview.png DELETED --- --- SpaceWiki.css DELETED --- --- SpaceWiki-gravimetric.css DELETED --- --- themeinfo.php DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:27
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/default In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/default Removed Files: phpwiki-heavy.css phpwiki-modern-heavy.css phpwiki-modern.css phpwiki-printer.css phpwiki-topbottombars.css phpwiki.css themeinfo.php Log Message: Removed wiki. --- phpwiki-heavy.css DELETED --- --- phpwiki-topbottombars.css DELETED --- --- phpwiki-modern.css DELETED --- --- phpwiki-modern-heavy.css DELETED --- --- phpwiki.css DELETED --- --- phpwiki-printer.css DELETED --- --- themeinfo.php DELETED --- |
From: Braden M. <br...@us...> - 2007-06-05 20:28:27
|
Update of /cvsroot/openvrml/htdocs/wiki/themes/Wordpress/images In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6776/wiki/themes/Wordpress/images Removed Files: content-background.gif header-background.gif menu-background.gif Log Message: Removed wiki. --- menu-background.gif DELETED --- --- header-background.gif DELETED --- --- content-background.gif DELETED --- |