mirror of https://github.com/CGAL/cgal
28 lines
516 B
C++
28 lines
516 B
C++
|
|
namespace CGAL {
|
|
|
|
/*!
|
|
\ingroup PkgKernelDLinAlgClasses
|
|
|
|
The class `Linear_algebraCd` serves as the default traits class for the LA
|
|
parameter of `CGAL::Cartesian_d<FT,LA>`. It implements linear
|
|
algebra for field number types `FT`.
|
|
|
|
\cgalModels `LinearAlgebraTraits_d`
|
|
|
|
\tparam FT must be a field number type.
|
|
|
|
\cgalHeading{Operations}
|
|
|
|
Fits all operation requirements of the concept.
|
|
|
|
*/
|
|
template< typename FT >
|
|
class Linear_algebraCd {
|
|
public:
|
|
|
|
/// @}
|
|
|
|
}; /* end Linear_algebraCd */
|
|
} /* end namespace CGAL */
|