mirror of https://github.com/CGAL/cgal
details
This commit is contained in:
parent
30f202c81b
commit
7b912f885f
|
|
@ -20,6 +20,9 @@ This chapter describes the \cgal's package geared towards the
|
||||||
estimation of local differential quantities on sampled surfaces, given
|
estimation of local differential quantities on sampled surfaces, given
|
||||||
either as a mesh or as point cloud.
|
either as a mesh or as point cloud.
|
||||||
|
|
||||||
|
Note that this package needs the third party libraries
|
||||||
|
\ccThirdPartyLapack\ and \ccThirdPartyBlas\ to be installed to compile
|
||||||
|
the example code.
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
\section{Introduction}
|
\section{Introduction}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
%\ccPkgHowToCiteCgal{}
|
%\ccPkgHowToCiteCgal{}
|
||||||
\ccPkgSummary{This package enables the Computation of local
|
\ccPkgSummary{This package enables the Computation of local
|
||||||
differential quantities of a surface from a point sample.}
|
differential quantities of a surface from a point sample.}
|
||||||
%\ccPkgDependsOn{\ccRefPkg:}
|
\ccPkgDependsOn{Solvers as \ccThirdPartyLapack\ and \ccThirdPartyBlas.}
|
||||||
%\ccPkgIntroducedInCGAL{}
|
%\ccPkgIntroducedInCGAL{}
|
||||||
%\ccPkgLicense{\ccLicenseQPL}
|
%\ccPkgLicense{\ccLicenseQPL}
|
||||||
\end{ccPkgDescription}
|
\end{ccPkgDescription}
|
||||||
|
|
|
||||||
|
|
@ -38,9 +38,9 @@ int dgelss(int *m, int *n, int *nrhs,
|
||||||
int *info)
|
int *info)
|
||||||
{
|
{
|
||||||
#ifdef CGAL_USE_F2C
|
#ifdef CGAL_USE_F2C
|
||||||
return dgelss_(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
|
return ::dgelss_(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
|
||||||
#else
|
#else
|
||||||
return dgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
|
return ::dgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue