
Tue, 01/10/2023 - 16:38
Hello everyone,
I use the code below to import a STL file and to show that on view. But actually there is a difference between reel stl file and imported stl file. Generally same but looks different and imported like bad quality. So is there an opinion to get better my visualization?
TCollection_AsciiString theFileName = toAsciiString(inp);
auto polyTriangulation = RWStl::ReadFile(theFileName.ToCString());
auto aShape = TopoDS_Face();
auto aBuilder = BRep_Builder();
aBuilder.MakeFace(aShape, polyTriangulation);
Handle(AIS_Shape) shape = new AIS_Shape(aShape);
shape->SetColor(Quantity_NOC_CYAN);
importedStl() = shape;
myAISContext()->Display(importedStl(), AIS_Shaded, 0, true);
Wed, 01/11/2023 - 20:01
You may try changing
theMergeAngle
parameter to a reasonable value to avoid merging triangulation nodes at sharp edges. Or use some better mesh file format, not that simple and limited as STL.Wed, 01/11/2023 - 11:53
You're the best! Thank you.