aboutsummaryrefslogtreecommitdiffhomepage
path: root/demos
Commit message (Collapse)AuthorAge
* Make file formatting comply with POSIX and Unix standardsGravatar Aaron Franke2020-03-23
| | | | UTF-8, LF, no BOM, and newlines at the end of files
* STYLE: Remove CMake-language block-end command argumentsGravatar Hans Johnson2019-10-31
| | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
* Fixed compilation error due to obsolete internal::abs and internal::sqrt ↵Gravatar Abhijit Kundu2014-03-26
| | | | function calls
* Disable opengl demo if Qt4 or OpenGL cannot be found.Gravatar Gael Guennebaud2012-10-31
| | | | | (transplanted from caf24f1c9e540c0d7120d9344a2f4a2fd14098f2 )
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Fixed Geometry module failures.Gravatar Hauke Heibel2010-08-17
| | | | | | | | | Removed default parameter from Transform. Removed the TransformXX typedefs. Removed references to TransformXX from unit tests and docs. Assigning Transforms to a sub-group is now forbidden at compile time. Products should now properly support the Isometry flag. Fixed alignment checks in MapBase.
* fix compilation of quaternion demoGravatar Gael Guennebaud2010-07-21
|
* fix mandelbrot compilation, and make it use Array instead of MatrixGravatar Gael Guennebaud2010-07-21
|
* Fixed annoying CMake - Qt warning.Gravatar Hauke Heibel2010-07-03
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* Added cmake project definitions.Gravatar Hauke Heibel2009-10-02
|
* * Introduce make targets btest (build tests), blas (build blas lib), demos ↵Gravatar Benoit Jacob2009-09-27
| | | | | | | | | (build demos). * remove EIGEN_BUILD_TESTS and siblings * add summary at the end of cmake run, hopefully not too verbose * fix build of quaternion demo * kill remnants of old binary library option
* add legaleseGravatar Benoit Jacob2009-09-20
|
* add demo of how to mix eigen with C codeGravatar Benoit Jacob2009-09-20
|
* remove sentence "Eigen itself is part of the KDE project."Gravatar Benoit Jacob2009-05-22
| | | | it never made very precise sense. but now does it still make any?
* opengl demo: add aligned operator new where appropriate and remove myGravatar Gael Guennebaud2009-03-13
| | | | mess...
* * fix Quaternion::setFromTwoVectors (thanks to "benv" from the forum)Gravatar Gael Guennebaud2009-02-17
| | | | | | | | * extend PartialRedux::cross() to any matrix sizes with automatic vectorization when possible * unit tests: add "geo_" prefix to all unit tests related to the geometry module and start splitting the big "geometry.cpp" tests to multiple smaller ones (also include new tests)
* prefix all Eigen cmake variable with EIGEN_ and switched to lowercase for ↵Gravatar Gael Guennebaud2008-12-02
| | | | all cmake files
* Update e-mail addressGravatar Benoit Jacob2008-11-24
|
* * block() for vectors ---> segment()Gravatar Benoit Jacob2008-09-15
| | | | * documentation improvements, especially in quickstart guide
* * Quaternion: added dot product and angularDistance functions. The latter isGravatar Gael Guennebaud2008-09-11
| | | | | | based on the former. * opengl_demo: makes IcoSphere better (vertices are instanciated only once) and removed the generation of a big geometry for the fancy spheres...
* opengl demo, now working:Gravatar Gael Guennebaud2008-09-09
| | | | | | - quaternion vs euler angles interpolation (though the Euler angle version looks a bit too bad) - navigation using either a mapping from 2D screen coordinates to 3D points on a sphere or the standard approach mapping mouse displacements as rotations around camera's axes.
* various stuff in opengl demos such as a better model,Gravatar Gael Guennebaud2008-09-09
| | | | | stable trackball for the fly navigation mode, and started to put some GUI elements...
* 2 typosGravatar Gael Guennebaud2008-09-08
|
* started a small OpenGL demo making use of Eigen's geometry featuresGravatar Gael Guennebaud2008-09-07
|
* not yetGravatar Gael Guennebaud2008-09-03
|
* Solve a big issue with data alignment and dynamic allocation:Gravatar Gael Guennebaud2008-09-03
| | | | | | | | | | | | | | | | * add a WithAlignedOperatorNew class with overloaded operator new * make Matrix (and Quaternion, Transform, Hyperplane, etc.) use it if needed such that "*(new Vector4) = xpr" does not failed anymore. * Please: make sure your classes having fixed size Eigen's vector or matrice attributes inherit WithAlignedOperatorNew * add a ei_new_allocator STL memory allocator to use with STL containers. This allocator really calls operator new on your types (unlike GCC's new_allocator). Example: std::vector<Vector4f> data(10); will segfault if the vectorization is enabled, instead use: std::vector<Vector4f,ei_new_allocator<Vector4f> > data(10); NOTE: you only have to worry if you deal with fixed-size matrix types with "sizeof(matrix_type)%16==0"...
* Various compilation fixes for MSVC 9. All tests compile but someGravatar Gael Guennebaud2008-08-19
| | | | still fail at runtime in ei_aligned_free() (even without vectorization).
* - many updates after Cwise changeGravatar Benoit Jacob2008-07-08
| | | | | - fix compilation in product.cpp with std::complex - fix bug in MatrixBase::operator!=
* the big Array/Cwise rework as discussed on the mailing list. The new APIGravatar Benoit Jacob2008-07-08
| | | | can be seen in Eigen/src/Core/Cwise.h.
* * fix error in divergence test, now it is even fasterGravatar Benoit Jacob2008-07-01
| | | | * add comments in render() in case anyone ever reads that :P
* interleaved rendering balances the load betterGravatar Benoit Jacob2008-07-01
|
* * multi-threaded renderingGravatar Benoit Jacob2008-07-01
| | | | | * increased number of iterations, with more iterations done before testing divergence. results in x2 speedup from vectorization.
* - use double precision to store the position / zoom / other stuffGravatar Benoit Jacob2008-06-30
| | | | | - some temporary fix to get a +50% improvement from vectorization until we have vectorisation for comparisons and redux
* fix little bug in computation of max_iterGravatar Benoit Jacob2008-06-29
|
* improve greatly mandelbrot demo:Gravatar Benoit Jacob2008-06-29
| | | | | | | - much better coloring - determine max number of iterations and choice between float and double at runtime based on zoom level - do draft renderings with increasing resolution before final rendering
* add mandelbrot demoGravatar Benoit Jacob2008-06-28