mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-13 17:48:34 +05:00
Import STL as Mesh
This commit is contained in:
parent
ec40e605a3
commit
f6f4976402
@ -7,6 +7,7 @@
|
|||||||
#include <myadt.hpp>
|
#include <myadt.hpp>
|
||||||
#include <linalg.hpp>
|
#include <linalg.hpp>
|
||||||
#include <csg.hpp>
|
#include <csg.hpp>
|
||||||
|
#include <stlgeom.hpp>
|
||||||
#include <meshing.hpp>
|
#include <meshing.hpp>
|
||||||
|
|
||||||
#include "writeuser.hpp"
|
#include "writeuser.hpp"
|
||||||
@ -648,6 +649,33 @@ namespace netgen
|
|||||||
ReadFNFFormat (mesh, filename);
|
ReadFNFFormat (mesh, filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( ( (strlen (filename) > 4) && strcmp (&filename[strlen (filename)-4], ".stl") == 0 ) ||
|
||||||
|
( (strlen (filename) > 5) && strcmp (&filename[strlen (filename)-5], ".stlb") == 0 ) )
|
||||||
|
{
|
||||||
|
ifstream ist{string{filename}};
|
||||||
|
auto geom = shared_ptr<STLGeometry>(STLGeometry::Load(ist));
|
||||||
|
|
||||||
|
mesh.SetDimension (3);
|
||||||
|
|
||||||
|
auto & points = geom->GetPoints();
|
||||||
|
|
||||||
|
for (auto & p : points)
|
||||||
|
mesh.AddPoint(MeshPoint(p));
|
||||||
|
|
||||||
|
mesh.AddFaceDescriptor (FaceDescriptor (1, 1, 0, 1));
|
||||||
|
|
||||||
|
for (auto ti : IntRange(geom->GetNT()))
|
||||||
|
{
|
||||||
|
auto & trig = geom->GetTriangle(ti);
|
||||||
|
Element2d el(TRIG);
|
||||||
|
for (auto i : IntRange(3))
|
||||||
|
el[i] = (*geom)[STLTrigIndex(ti)][i];
|
||||||
|
|
||||||
|
el.SetIndex(1);
|
||||||
|
|
||||||
|
mesh.AddSurfaceElement(el);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -231,6 +231,7 @@ loadmeshinifile;
|
|||||||
{"Universal format" {.unv} }
|
{"Universal format" {.unv} }
|
||||||
{"Olaf format" {.emt} }
|
{"Olaf format" {.emt} }
|
||||||
{"TET format" {.tet} }
|
{"TET format" {.tet} }
|
||||||
|
{"STL format" {.stl .stlb} }
|
||||||
{"Pro/ENGINEER neutral format" {.fnf} }
|
{"Pro/ENGINEER neutral format" {.fnf} }
|
||||||
}
|
}
|
||||||
set file [tk_getOpenFile -filetypes $types ]
|
set file [tk_getOpenFile -filetypes $types ]
|
||||||
|
@ -405,6 +405,7 @@ namespace netgen
|
|||||||
PrintMessage (2, mesh->GetNP(), " Points, ",
|
PrintMessage (2, mesh->GetNP(), " Points, ",
|
||||||
mesh->GetNE(), " Elements.");
|
mesh->GetNE(), " Elements.");
|
||||||
|
|
||||||
|
SetGlobalMesh (mesh);
|
||||||
mesh->SetGlobalH (mparam.maxh);
|
mesh->SetGlobalH (mparam.maxh);
|
||||||
mesh->CalcLocalH(mparam.grading);
|
mesh->CalcLocalH(mparam.grading);
|
||||||
|
|
||||||
|
@ -861,6 +861,7 @@ const char * ngscript[] = {""
|
|||||||
,"{\"Universal format\" {.unv} }\n"
|
,"{\"Universal format\" {.unv} }\n"
|
||||||
,"{\"Olaf format\" {.emt} }\n"
|
,"{\"Olaf format\" {.emt} }\n"
|
||||||
,"{\"TET format\" {.tet} }\n"
|
,"{\"TET format\" {.tet} }\n"
|
||||||
|
,"{\"STL format\" {.stl .stlb} }\n"
|
||||||
,"{\"Pro/ENGINEER neutral format\" {.fnf} }\n"
|
,"{\"Pro/ENGINEER neutral format\" {.fnf} }\n"
|
||||||
,"}\n"
|
,"}\n"
|
||||||
,"set file [tk_getOpenFile -filetypes $types ]\n"
|
,"set file [tk_getOpenFile -filetypes $types ]\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user