You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(45) |
Nov
(4) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(2) |
Feb
(1) |
Mar
(15) |
Apr
(7) |
May
(1) |
Jun
(9) |
Jul
(4) |
Aug
(15) |
Sep
(2) |
Oct
|
Nov
(4) |
Dec
|
2008 |
Jan
(3) |
Feb
(7) |
Mar
|
Apr
(4) |
May
|
Jun
(4) |
Jul
(55) |
Aug
(6) |
Sep
(6) |
Oct
(3) |
Nov
(4) |
Dec
(1) |
2009 |
Jan
(6) |
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
(11) |
Jun
(7) |
Jul
(6) |
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
(7) |
Dec
|
2010 |
Jan
(5) |
Feb
(2) |
Mar
(19) |
Apr
(8) |
May
(2) |
Jun
(6) |
Jul
(1) |
Aug
(3) |
Sep
|
Oct
(38) |
Nov
(47) |
Dec
(18) |
2011 |
Jan
(5) |
Feb
(3) |
Mar
(14) |
Apr
(14) |
May
(16) |
Jun
(4) |
Jul
|
Aug
(6) |
Sep
(48) |
Oct
(17) |
Nov
(13) |
Dec
(22) |
2012 |
Jan
(5) |
Feb
(25) |
Mar
(35) |
Apr
(13) |
May
(2) |
Jun
(12) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <l3...@us...> - 2007-11-20 17:09:46
|
Revision: 113 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=113&view=rev Author: l3m Date: 2007-11-20 09:09:48 -0800 (Tue, 20 Nov 2007) Log Message: ----------- added distanceToPlane, projectPointOntoPlane, distanceToSphere and projectPointOntoSphere functions to vector4. Modified Paths: -------------- trunk/include/vmmlib/vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-11-14 11:26:36
|
Revision: 112 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=112&view=rev Author: l3m Date: 2007-11-14 03:26:38 -0800 (Wed, 14 Nov 2007) Log Message: ----------- renamed some parameters for clarity Modified Paths: -------------- trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ei...@us...> - 2007-11-13 11:01:40
|
Revision: 111 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=111&view=rev Author: eile Date: 2007-11-13 03:01:43 -0800 (Tue, 13 Nov 2007) Log Message: ----------- fix -Wshadow warnings Modified Paths: -------------- trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/quaternion.h trunk/include/vmmlib/vector3.h trunk/include/vmmlib/vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-09-24 12:48:20
|
Revision: 110 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=110&view=rev Author: l3m Date: 2007-09-24 05:48:22 -0700 (Mon, 24 Sep 2007) Log Message: ----------- added iterator & const_iterator typedefs to the vector classes, and const and non-const begin() and end() functions, to allow 'type-independent' iteration over components: contrived example: :) template< typename float_t, template< typename float_t > class vec > float_t get_sum_of_components( const vec< float_t >& vector_ ) { float_t sum( 0 ); vec< float_t >::const_iterator it = vector_.begin(); vec< float_t >::const_iterator it_end = vector_.end(); for ( ; it != it_end; ++it ) { sum += *it; } return sum; } Modified Paths: -------------- trunk/include/vmmlib/vector2.h trunk/include/vmmlib/vector3.h trunk/include/vmmlib/vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-09-23 17:03:37
|
Revision: 109 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=109&view=rev Author: l3m Date: 2007-09-23 10:03:25 -0700 (Sun, 23 Sep 2007) Log Message: ----------- fixed a bug in svd.h ( allocation for rv1 did not consider template type, always used double ). Modified Paths: -------------- trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/svd.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-30 21:01:12
|
Revision: 108 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=108&view=rev Author: l3m Date: 2007-08-30 13:44:01 -0700 (Thu, 30 Aug 2007) Log Message: ----------- removed some warnings on -pedantic. unfortunately we can't totally comply since anon structs are disallowed by ISO C++. :( Modified Paths: -------------- trunk/include/vmmlib/frustum.h trunk/include/vmmlib/helperFunctions.h trunk/include/vmmlib/jacobiSolver.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ei...@us...> - 2007-08-27 13:46:50
|
Revision: 107 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=107&view=rev Author: eile Date: 2007-08-27 06:46:53 -0700 (Mon, 27 Aug 2007) Log Message: ----------- remove eq-specific include paths Modified Paths: -------------- trunk/include/vmmlib/axisAlignedBoundingBox.h trunk/include/vmmlib/frustum.h trunk/include/vmmlib/frustumCuller.h trunk/include/vmmlib/jacobiSolver.h trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/quaternion.h trunk/include/vmmlib/svd.h trunk/include/vmmlib/vector3.h trunk/include/vmmlib/vector4.h trunk/include/vmmlib/vmmlib.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <max...@us...> - 2007-08-22 15:41:12
|
Revision: 106 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=106&view=rev Author: max_mahinya Date: 2007-08-22 08:41:15 -0700 (Wed, 22 Aug 2007) Log Message: ----------- Vector3 getNormalizedVector3() function added for extracting of normalized vector using only xyz coordinates of Vector4 Modified Paths: -------------- trunk/include/vmmlib/vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <max...@us...> - 2007-08-22 11:51:38
|
Revision: 105 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=105&view=rev Author: max_mahinya Date: 2007-08-22 04:51:41 -0700 (Wed, 22 Aug 2007) Log Message: ----------- Matrix3 Matrix3::operator=( Matrix4 ) added, to get main submatrix from Matrix4. Modified Paths: -------------- trunk/include/vmmlib/matrix3.h trunk/tests/Matrix3Test.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-17 21:15:00
|
Revision: 104 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=104&view=rev Author: l3m Date: 2007-08-17 14:14:59 -0700 (Fri, 17 Aug 2007) Log Message: ----------- rephrase the comments in matrix4 Modified Paths: -------------- trunk/include/vmmlib/matrix4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ei...@us...> - 2007-08-16 07:15:53
|
Revision: 103 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=103&view=rev Author: eile Date: 2007-08-16 00:15:44 -0700 (Thu, 16 Aug 2007) Log Message: ----------- Bugfix: Frustum::adjustNear Modified Paths: -------------- trunk/include/vmmlib/frustum.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ei...@us...> - 2007-08-15 16:54:04
|
Revision: 102 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=102&view=rev Author: eile Date: 2007-08-15 09:54:06 -0700 (Wed, 15 Aug 2007) Log Message: ----------- provide alternate include path when used with Equalizer Modified Paths: -------------- trunk/include/vmmlib/axisAlignedBoundingBox.h trunk/include/vmmlib/frustum.h trunk/include/vmmlib/frustumCuller.h trunk/include/vmmlib/jacobiSolver.h trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/quaternion.h trunk/include/vmmlib/svd.h trunk/include/vmmlib/vector3.h trunk/include/vmmlib/vector4.h trunk/include/vmmlib/vmmlib.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <max...@us...> - 2007-08-13 15:55:05
|
Revision: 101 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=101&view=rev Author: max_mahinya Date: 2007-08-13 08:55:04 -0700 (Mon, 13 Aug 2007) Log Message: ----------- Matrix*vector operation fixed Modified Paths: -------------- trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/vector4.h trunk/tests/Matrix4Test.cpp trunk/tests/Vector4Test.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-12 10:32:13
|
Revision: 100 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=100&view=rev Author: l3m Date: 2007-08-12 03:32:11 -0700 (Sun, 12 Aug 2007) Log Message: ----------- added viewport anon-struct to vector4 ( lowerLeftX, lowerLeftY, width, height ) Modified Paths: -------------- trunk/include/vmmlib/vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-11 10:04:31
|
Revision: 99 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=99&view=rev Author: l3m Date: 2007-08-11 03:04:32 -0700 (Sat, 11 Aug 2007) Log Message: ----------- added anonymous struct{ T min, max } to vector2, to allow vec.min and vec.max for easy storing of limits... Modified Paths: -------------- trunk/include/vmmlib/vector2.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-09 18:57:12
|
Revision: 98 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=98&view=rev Author: l3m Date: 2007-08-09 11:57:13 -0700 (Thu, 09 Aug 2007) Log Message: ----------- removed VMMLIB_DISABLE_TYPEDEFS hack Modified Paths: -------------- trunk/include/vmmlib/frustum.h trunk/include/vmmlib/frustumCuller.h trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/quaternion.h trunk/include/vmmlib/vector2.h trunk/include/vmmlib/vector3.h trunk/include/vmmlib/vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-09 17:14:32
|
Revision: 97 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=97&view=rev Author: l3m Date: 2007-08-09 10:14:36 -0700 (Thu, 09 Aug 2007) Log Message: ----------- fixed tests and tests-Makefile Modified Paths: -------------- trunk/tests/JacobiSolverTest.cpp trunk/tests/JacobiSolverTest.h trunk/tests/Makefile trunk/tests/Matrix3Test.h trunk/tests/Matrix4Test.h trunk/tests/QuaternionTest.cpp trunk/tests/QuaternionTest.h trunk/tests/SVDTest.cpp trunk/tests/SVDTest.h trunk/tests/Vector2Test.cpp trunk/tests/Vector2Test.h trunk/tests/Vector3Test.cpp trunk/tests/Vector3Test.h trunk/tests/Vector4Test.cpp trunk/tests/Vector4Test.h trunk/tests/main_test.cpp trunk/tests/perf_test.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-09 17:05:37
|
Revision: 96 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=96&view=rev Author: l3m Date: 2007-08-09 10:05:41 -0700 (Thu, 09 Aug 2007) Log Message: ----------- forgot to rename svd Added Paths: ----------- trunk/include/vmmlib/svd.h Removed Paths: ------------- trunk/include/SingularValueDecomposition.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-09 17:03:05
|
Revision: 95 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=95&view=rev Author: l3m Date: 2007-08-09 10:03:05 -0700 (Thu, 09 Aug 2007) Log Message: ----------- the great renaming, part one. moved all headers to include/vmmlib, changed the filename to small case and changed all internal includes from "X.h" to <vmmlib/x.h>. Modified Paths: -------------- trunk/VMMLib.xcodeproj/project.pbxproj trunk/tests/SVDTest.h trunk/tests/main_test.cpp Added Paths: ----------- trunk/include/vmmlib/ trunk/include/vmmlib/LICENSE trunk/include/vmmlib/axisAlignedBoundingBox.h trunk/include/vmmlib/frustum.h trunk/include/vmmlib/frustumCuller.h trunk/include/vmmlib/helperFunctions.h trunk/include/vmmlib/jacobiSolver.h trunk/include/vmmlib/matrix3.h trunk/include/vmmlib/matrix4.h trunk/include/vmmlib/quaternion.h trunk/include/vmmlib/vector2.h trunk/include/vmmlib/vector3.h trunk/include/vmmlib/vector4.h trunk/include/vmmlib/vmmlib.h Removed Paths: ------------- trunk/include/AxisAlignedBoundingBox.h trunk/include/Frustum.h trunk/include/FrustumCuller.h trunk/include/HelperFunctions.h trunk/include/JacobiSolver.h trunk/include/LICENSE trunk/include/Matrix3.h trunk/include/Matrix4.h trunk/include/Quaternion.h trunk/include/VMMLib.h trunk/include/Vector2.h trunk/include/Vector3.h trunk/include/Vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-08-07 10:01:58
|
Revision: 94 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=94&view=rev Author: l3m Date: 2007-08-07 03:01:56 -0700 (Tue, 07 Aug 2007) Log Message: ----------- added distance and distanceSquared member functions to Vector3 Modified Paths: -------------- trunk/include/Vector3.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ei...@us...> - 2007-07-30 12:40:11
|
Revision: 93 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=93&view=rev Author: eile Date: 2007-07-30 05:40:13 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Bugfix: Vector::normalize should return old length, Opt: perf-related template float specializations Modified Paths: -------------- trunk/include/Vector2.h trunk/include/Vector3.h trunk/include/Vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-07-25 12:13:42
|
Revision: 92 http://vmmlib.svn.sourceforge.net/vmmlib/?rev=92&view=rev Author: l3m Date: 2007-07-25 05:13:23 -0700 (Wed, 25 Jul 2007) Log Message: ----------- fixed stefans frustum culling :) Modified Paths: -------------- trunk/include/FrustumCuller.h trunk/include/Vector4.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-07-18 16:50:54
|
Revision: 91 http://svn.sourceforge.net/vmmlib/?rev=91&view=rev Author: l3m Date: 2007-07-18 09:50:51 -0700 (Wed, 18 Jul 2007) Log Message: ----------- renamed FrustumCuller::setup parameter projection to projModelView, because thats what it actually is. Added Frustum::computeOrthoMatrix. Modified Paths: -------------- trunk/include/AxisAlignedBoundingBox.h trunk/include/Frustum.h trunk/include/FrustumCuller.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-07-06 16:28:50
|
Revision: 90 http://svn.sourceforge.net/vmmlib/?rev=90&view=rev Author: l3m Date: 2007-07-06 09:28:33 -0700 (Fri, 06 Jul 2007) Log Message: ----------- set enum VISIBILITY_NONE to zero Modified Paths: -------------- trunk/include/FrustumCuller.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <l3...@us...> - 2007-06-15 19:04:06
|
Revision: 89 http://svn.sourceforge.net/vmmlib/?rev=89&view=rev Author: l3m Date: 2007-06-15 12:04:02 -0700 (Fri, 15 Jun 2007) Log Message: ----------- added tests for the new smaller/greater functions Modified Paths: -------------- trunk/VMMLib.xcodeproj/project.pbxproj trunk/tests/Vector2Test.cpp trunk/tests/Vector3Test.cpp trunk/tests/Vector4Test.cpp trunk/tests/perf_test.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |