Hello!
Is there a way to name mesh boundaries? The tutorial pages show how to name boundaries for geometries created using CSGeometry, but I don’t see any similar options for imported geometries or meshes.
For instance, if I import an STL file with the following script:
from netgen.stl import *
#from netgen.libngpy._stl import*
geo = STLGeometry('netgenSTL_05.stl')
geo.GenerateMesh()
The function STLGeometry does not have .bc() or .Add() functions like in CSGeometry.
Another question I have is, is there a difference between the libngpy and the normal versions of the modules?
Thank you in advance!