Skip to content
Snippets Groups Projects
Commit 669749e6 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

No commit message

No commit message
parent 65f12369
No related branches found
No related tags found
No related merge requests found
......@@ -320,7 +320,12 @@ void OCC_Internals::addLineLoop(int tag, std::vector<int> edgeTags)
void OCC_Internals::addSurfaceLoop(int tag, std::vector<int> faceTags)
{
Msg::Error("OCC TODO create shell!");
Msg::Error("OCC TODO create shell");
}
void OCC_Internals::addVolume(int tag, std::vector<int> shellTags)
{
Msg::Error("OCC TODO create volume");
}
void OCC_Internals::addSphere(int tag, double xc, double yc, double zc, double radius)
......
......@@ -117,6 +117,7 @@ class OCC_Internals {
void addCircleArc(int tag, int startTag, int centerTag, int endTag);
void addLineLoop(int tag, std::vector<int> edgeTags);
void addSurfaceLoop(int tag, std::vector<int> faceTags);
void addVolume(int tag, std::vector<int> shellTags);
void addSphere(int tag, double xc, double yc, double zc, double radius);
void addBlock(int tag, double x1, double y1, double z1,
double x2, double y2, double z2);
......@@ -175,6 +176,7 @@ public:
void addCircleArc(int tag, int startTag, int centerTag, int endTag){}
void addLineLoop(int tag, std::vector<int> edgeTags){}
void addSurfaceLoop(int tag, std::vector<int> faceTags){}
void addVolume(int tag, std::vector<int> shellTags){}
void addSphere(int tag, double xc, double yc, double zc, double radius){};
void addBlock(int tag, double x1, double y1, double z1,
double x2, double y2, double z2){}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment