Merge branch 'ngcore' into curved_splinesurface

This commit is contained in:
Christopher Lackner 2018-12-13 14:33:32 +01:00
commit 614dd3bf1c
2 changed files with 6 additions and 1 deletions

View File

@ -96,4 +96,5 @@ void SplineSurface :: AppendPoint(const Point<3> & p, const double reffac, const
str << "SplineSurface with base " << *baseprimitive << endl; str << "SplineSurface with base " << *baseprimitive << endl;
} }
static RegisterClassForArchive<SplineSurface, OneSurfacePrimitive> regss;
} }

View File

@ -53,7 +53,11 @@ namespace netgen
virtual INSOLID_TYPE BoxInSolid(const BoxSphere<3> & box) const virtual INSOLID_TYPE BoxInSolid(const BoxSphere<3> & box) const
{ return baseprimitive->BoxInSolid(box); } { return baseprimitive->BoxInSolid(box); }
virtual void DoArchive(Archive& ar)
{
ar & geompoints & splines & bcnames & maxh & baseprimitive & cuts & all_cuts;
}
/* /*
virtual void Project (Point<3> & p3d) const; virtual void Project (Point<3> & p3d) const;