Skip to content
Snippets Groups Projects
Commit 179a68e9 authored by Philippe Delandmeter's avatar Philippe Delandmeter
Browse files

update in the 3d export, and lonlat mesh construction

parent 97ecdfdc
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,7 @@ class MPrism : public MElement {
virtual int getNumVertices() const { return 6; }
virtual double getInnerRadius();
virtual MVertex *getVertex(int num){ return _v[num]; }
virtual void setVertex(int num, MVertex *v){_v[num]=v;}
virtual int getNumEdges(){ return 9; }
virtual MEdge getEdge(int num)
{
......
......@@ -58,6 +58,7 @@ class MTriangle : public MElement {
virtual double angleShapeMeasure();
virtual int getNumVertices() const { return 3; }
virtual MVertex *getVertex(int num){ return _v[num]; }
virtual void setVertex(int num, MVertex *v){_v[num]=v;}
virtual void xyz2uvw(double xyz[3], double uvw[3]);
virtual MVertex *getOtherVertex(MVertex *v1, MVertex *v2)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment