Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-03-19Update to use <iostream> vs <iostream.h>Daniel Dunbar
2003-03-18Rest of the VC7 intern projectfiles.Daniel Dunbar
2003-03-13updated intern project files to suit the lib dir move.Simon Clitherow
2003-01-28Modified MSVC intern projectfiles - XCOPY doesn't need the /E option.Simon Clitherow
Updated README to suit the new 'merged' blender target. --aphex
2003-01-12Hello,Francis Laurence
*Fixed boolean buglet in the bsp lib. I have not committed any libraries so you'll have to do this to see the changes in blender. *Got the bsp test program working again with the new GHOST createWindow interface. *(Visual C++) Modfied some of the dsp in the intern library to NOT prompt when overwirting old libs and header files. This is the /Y option after XCOPY Cheers Laurence.
2003-01-04Workaround for the header file copying dependency hellHans Lambermont
2003-01-01Finished cleaning up the ik directory removing unused files.Kent Mein
Kent -- mein@cs.umn.edu
2002-12-26WooHoo me again ;)Kent Mein
I took out the following from the includes in the intern dir that still had it: -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif Kent -- mein@cs.umn.edu
2002-12-19Fixed this warning:Kent Mein
IK_QSegment.h: In constructor `IK_QSegment::IK_QSegment(MT_Point3, MT_Matrix3x3, double, MT_ExpMap)': IK_QSegment.h:271: warning: member initializers for `MT_Scalar IK_QSegment::m_length' IK_QSegment.h:270: warning: and `MT_ExpMap IK_QSegment::m_q' IK_QSegment.cpp:56: warning: will be re-ordered to match declaration order IK_QSegment.h: In constructor `IK_QSegment::IK_QSegment()': IK_QSegment.h:271: warning: member initializers for `MT_Scalar IK_QSegment::m_length' IK_QSegment.h:270: warning: and `MT_ExpMap IK_QSegment::m_q' IK_QSegment.cpp:73: warning: will be re-ordered to match declaration order Kind of goofy its just the order of which 2 private vars are defined. Kent -- mein@cs.umn.edu
2002-12-16Added extra libs for solarisKent Mein
(-l/usr/openwin/lib -lglut etc...) Kent -- mein@cs.umn.edu
2002-12-14Corrected intern lib names so blendercreator.dsp can find them.Simon Clitherow
Previous commit broke this. --aphex
2002-12-13And the rest! ;) --aphexSimon Clitherow
2002-12-03Got rid of unused files in intern/iksolverKent Mein
(removed them from cvs and from the Makefile.am) Kent -- mein@cs.umn.edu
2002-11-25Yes I did it again ;)Kent Mein
added the following 3 lines to everything in the intern dir: #ifdef HAVE_CONFIG_H #include <config.h> #endif Kent -- mein@cs.umn.edu
2002-11-20removed our licensing info as requested :)Kent Mein
Kent -- mein@cs.umn.edu
2002-11-19--- IK_JacobianSolver.cpp 2002/10/13 16:07:40 1.2Kent Mein
+++ IK_JacobianSolver.cpp 2002/11/19 18:47:33 @@ -134,7 +134,7 @@ m_svd_w = 0; m_svd_v = 0; - TNT::SVD(m_svd_u,m_svd_w,m_svd_v); + TNT::SVD_a(m_svd_u,m_svd_w,m_svd_v); // invert the SVD and compute inverse Fix for why it wasn't building with configure Kent -- mein@cs.umn.edu
2002-11-09Added almost all projects in intern to the main MSVC project for intern (inMaarten Gribnau
intern/make/msvc_6_0. Changed paths in all these files to build to lib/windows and use obj/window/intern for object files and other temporary stuff. Added project files for guardedalloc and blenkey (in keymaker directory). blenkey still assumes openssl being installed in lib/windows. The only thing not automated is is the frozen Python stuff. Maarten
2002-11-08Added extra ranlib on libary files after being copied to the lib tree for ↵Maarten Gribnau
OSX only. This saves other OSX developers the trouble of manually running ranlib. This is not a good solution (because I don't know the correct one) but it works. Maarten
2002-10-30fixed spacing in the headers to get rid of some warnings and some otherKent Mein
little minor spacing issues.
2002-10-30removed some unused variablesKent Mein
2002-10-30removed extra ;Kent Mein
was causing problems with cc on SunOS also took out some blank lines to make the format of the file a little nicer
2002-10-12Initial revisionv2.25Hans Lambermont