From d0f11c223ac5b924cca0d921e294cd64e087dfb7 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 2 Mar 2017 23:27:08 +0000 Subject: [PATCH] fix --- Geo/GModelIO_OCC.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Geo/GModelIO_OCC.h b/Geo/GModelIO_OCC.h index e2917a0c78..1b3378e66c 100644 --- a/Geo/GModelIO_OCC.h +++ b/Geo/GModelIO_OCC.h @@ -391,13 +391,15 @@ public: } void extrude(const std::vector<std::pair<int, int> > &inDimTags, double dx, double dy, double dz, - std::vector<std::pair<int, int> > &outDimTags) + std::vector<std::pair<int, int> > &outDimTags, + ExtrudeParams *e=0) { _error("extrude"); } void revolve(const std::vector<std::pair<int, int> > &inDimTags, double x, double y, double z, double ax, double ay, double az, - double angle, std::vector<std::pair<int, int> > &outDimTags) + double angle, std::vector<std::pair<int, int> > &outDimTags, + ExtrudeParams *e=0) { _error("revolve"); } @@ -436,6 +438,7 @@ public: _error("copy shape"); } void remove(int dim, int tag){} + void remove(const std::vector<std::pair<int, int> > &dimTags){} void importShapes(const std::string &fileName, bool highestDimOnly, std::vector<std::pair<int, int> > &outDimTags, const std::string &format="") -- GitLab