mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 05:20:34 +05:00
windows fixes
This commit is contained in:
parent
6d6b60fffe
commit
7c21eb94c7
@ -1127,12 +1127,14 @@ template<int D>
|
|||||||
void SplineGeometry<D> :: SetGrading (const double grading)
|
void SplineGeometry<D> :: SetGrading (const double grading)
|
||||||
{ elto0 = grading;}
|
{ elto0 = grading;}
|
||||||
|
|
||||||
|
/*
|
||||||
template<int D>
|
template<int D>
|
||||||
void SplineGeometry<D> :: AppendPoint (const double x, const double y, const double reffac, const bool hpref)
|
void SplineGeometry<D> :: AppendPoint (const double x, const double y, const double reffac, const bool hpref)
|
||||||
{
|
{
|
||||||
geompoints.Append (GeomPoint<D>(x, y, reffac));
|
geompoints.Append (GeomPoint<D>(x, y, reffac));
|
||||||
geompoints.Last().hpref = hpref;
|
geompoints.Last().hpref = hpref;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
template<int D>
|
template<int D>
|
||||||
void SplineGeometry<D> :: AppendPoint (const Point<D> & p, const double reffac, const bool hpref)
|
void SplineGeometry<D> :: AppendPoint (const Point<D> & p, const double reffac, const bool hpref)
|
||||||
|
@ -84,7 +84,7 @@ public:
|
|||||||
const GeomPoint<D> & GetPoint(int i) const { return geompoints[i]; }
|
const GeomPoint<D> & GetPoint(int i) const { return geompoints[i]; }
|
||||||
|
|
||||||
void SetGrading (const double grading);
|
void SetGrading (const double grading);
|
||||||
void AppendPoint (const double x, const double y, const double reffac = 1., const bool hpref = false);
|
// void AppendPoint (const double x, const double y, const double reffac = 1., const bool hpref = false);
|
||||||
void AppendPoint (const Point<D> & p, const double reffac = 1., const bool hpref = false);
|
void AppendPoint (const Point<D> & p, const double reffac = 1., const bool hpref = false);
|
||||||
|
|
||||||
void AppendLineSegment (const int n1, const int n2,
|
void AppendLineSegment (const int n1, const int n2,
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
// in the configure/make phases, with the
|
// in the configure/make phases, with the
|
||||||
// right version number
|
// right version number
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#define PACKAGE_VERSION "4.9.9"
|
#define PACKAGE_VERSION "4.9.10"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
dist_noinst_DATA = netgen.sln netgen.vcproj netgen_MSVC2005.sln netgen_MSVC2005.vcproj postBuild_netgen.bat nglib.sln nglib.vcproj nglib_MSVC2005.sln nglib_MSVC2005.vcproj postBuild_nglib.bat
|
dist_noinst_DATA = netgen.sln netgen.vcproj netgen_MSVC2005.sln \
|
||||||
|
netgen_MSVC2005.vcproj postBuild_netgen.bat nglib.sln nglib.vcproj \
|
||||||
|
nglib_MSVC2005.sln nglib_MSVC2005.vcproj postBuild_nglib.bat \
|
||||||
|
netgen.ico netgen.rc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user