aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* fix Transform() constructor taking a Transform with other mode.Gravatar Benoit Jacob2010-08-16
| | | | Not really tested as the geometry tests are currently busted.
* fix warningsGravatar Benoit Jacob2010-08-16
|
* further improve compilation error message for array+=matrixGravatar Gael Guennebaud2010-08-16
|
* improve compilation error message for array+=matrix and the likesGravatar Gael Guennebaud2010-08-16
|
* fix declaration of AffineTransformType in TranslationGravatar Gael Guennebaud2010-08-16
|
* fix missdetection of GLUTGravatar Gael Guennebaud2010-08-16
|
* allow vectorization of mat44.col() by adding a InnerPanel booleanGravatar Gael Guennebaud2010-07-23
| | | | template parameter to Block
* slightly generalize the alignment assert in MapBaseGravatar Gael Guennebaud2010-08-16
|
* remove the aligned bit flag for non vectorizable typesGravatar Gael Guennebaud2010-08-16
|
* forgot to remove a #endifGravatar Benoit Jacob2010-08-13
|
* fix determination of number of registers on sse:Gravatar Benoit Jacob2010-08-13
| | | | | | __i386__ was not defined by MSVC 2010. fixed as (2*sizeof(void*)). also move that to SSE/ and let the default for unknown arch's be just 8.
* merge the backoutGravatar Benoit Jacob2010-08-11
|\
| * Backed out changeset 40f6e26a247976ba1868520a4747e49e0739a42aGravatar Benoit Jacob2010-08-11
| | | | | | | | See thread on mailing list: "InnerPanel change mis-detects alignment?"
* | Document EIGEN_NO_DEBUG macro.Gravatar Jitse Niesen2010-08-10
| | | | | | | | I needed some doxygen tricks to get this to work, so it may not be worth it.
* | Aliasing doc: explain that some cases are detected, reverse order examples.Gravatar Jitse Niesen2010-08-08
| |
* | Added more detailed docs to the QR decompositions classes.Gravatar Hauke Heibel2010-08-05
| |
* | some small improvements to the page on functions taking eigen objects.Gravatar Benoit Jacob2010-08-04
| | | | | | | | | | - make the beginning more precise - make the first example be a full selfcontained compiled example, no need for all the others, but having the first one doesn't hurt.
* | Added more examples to the function writing tutorial including EigenBase, ↵Gravatar Hauke Heibel2010-08-04
| | | | | | | | DenseBase, etc.
* | Fixed some typos and reformulated a few sentences.Gravatar Hauke Heibel2010-08-04
| |
* | Added a tutorial on writing functions taking Eigen types.Gravatar Hauke Heibel2010-08-04
| |
* | fix warnings. The one in Reverse was potentially serious: coeff() methods ↵Gravatar Benoit Jacob2010-08-03
| | | | | | | | should return CoeffReturnType, not "Scalar", if the expression is potentially a Lvalue.
* | Fixed Affine transform typedef.Gravatar Hauke Heibel2010-08-02
| |
* | Add page giving an overview of the class hierarchy.Gravatar Jitse Niesen2010-08-02
| | | | | | | | | | | | | | This is mostly copied from the wiki, which in turn copies Benoit's email at http://listengine.tuxfamily.org/lists.tuxfamily.org/eigen/2010/06/msg00576.html I used ASCII art for the inheritance diagrams for now, but I don't mind moving to GraphViz/dot as discussed earlier.
* | Documentation: Start special topic page on aliasing.Gravatar Jitse Niesen2010-07-31
| |
* | Added static method Identity() to the Translation class.Gravatar Hauke Heibel2010-07-29
| |
* | Safeguarded some Transform functions with compile time asserts.Gravatar Hauke Heibel2010-07-29
| | | | | | | | Added missing static Identity() to Rotation2D, AngleAxis.
* | Transform is now per default Projective.Gravatar Hauke Heibel2010-07-29
| | | | | | | | | | | | Improved invert() in the Transform class. RotationBase offers matrix() to be conform with Transform's naming scheme. Added Translation::translation() to be conform with Transform's naming scheme.
* | Removed debug outputs.Gravatar Hauke Heibel2010-07-28
| |
* | * added EIGEN_ALIGNED_ALLOCATOR macro to allow specifying a different ↵Gravatar Kenneth Riddile2010-07-26
| | | | | | | | | | | | aligned allocator * attempted to add support for std::deque by copying and modifying the std::vector implementation...MSVC still fails to compile with the std::deque::resize() "will not be aligned" error...probably missing something simple but I'm not sure how to make it work
* | Several changes in comments to keep Doxygen happy.Gravatar Jitse Niesen2010-07-25
| |
* | Add some more examples for the API documentation.Gravatar Jitse Niesen2010-07-24
| | | | | | | | | | The only missing examples now are for homogeneous() and hnormalized(); I don't know what they're used for ...
* | Add examples for API documentation of block methods in DenseBase.Gravatar Jitse Niesen2010-07-23
| |
* | Add examples for API documentation of MatrixBase::cwiseXxx() methods.Gravatar Jitse Niesen2010-07-23
| |
* | Set Doxygen config variable INCLUDE_PATH to plugins directory.Gravatar Jitse Niesen2010-07-23
| | | | | | | | | | This is necessary to get functions like MatrixBase::cwiseAbs() documented; otherwise doxygen can't find the include file in which they are defined.
* | Tutorial page 7: more typical example for .all(), minor copy-editing.Gravatar Jitse Niesen2010-07-23
| |
* | Add newline at the end of Dense.Gravatar User Martin Senst2010-07-23
|/
* allow vectorization of mat44.col() by adding a InnerPanel booleanGravatar Gael Guennebaud2010-07-23
| | | | template parameter to Block
* Tutorial page 6: Fix typo, add table of contents.Gravatar Jitse Niesen2010-07-22
|
* fix merge conflictsGravatar Gael Guennebaud2010-07-22
|
* merge with complex branchGravatar Gael Guennebaud2010-07-22
|\
| * Extend tutorial page 5: Advanced initialization.Gravatar Jitse Niesen2010-07-22
| |
* | sync with default branchGravatar Gael Guennebaud2010-07-22
|\|
* | oopsGravatar Gael Guennebaud2010-07-22
| |
| * add an OpenGL module simplifying the way you can pass Eigen's objects to GLGravatar Gael Guennebaud2010-07-22
| |
| * fix SparseView: clean the nested matrix typeGravatar Gael Guennebaud2010-07-22
| |
| * Unified LinSpaced in order to be conform with other setter methods as e.g. ↵Gravatar Hauke Heibel2010-07-22
| | | | | | | | Constant.
* | mergeGravatar Gael Guennebaud2010-07-22
|\ \
* | | add matlab-like mixed productGravatar Gael Guennebaud2010-07-22
| | |
* | | rename indices to a common schemeGravatar Gael Guennebaud2010-07-22
| | |
* | | fix inner vectorization logicGravatar Gael Guennebaud2010-07-22
| | |