Christopher Lackner f808a2bb64 Propagate maxh to children only in occgeom constructor
Allows resetting maxh to larger values again:

```
from netgen.occ import *
from ngsolve import *

b1 = Box((-1,-1,-1), (1,1,1))

b1.faces.Max(X).maxh = 0.1
b1.faces.Max(X).maxh = 0.2

geo = OCCGeometry(b1)
mesh = Mesh(geo.GenerateMesh(maxh=0.5))
Draw(mesh)
```

Needed for example in meshing app. Before it was not possible to set
maxh to larger value again.
2024-04-26 09:55:53 +02:00
..
2024-04-04 15:20:17 +02:00
2023-08-28 10:02:22 +02:00
2024-04-02 21:58:58 +02:00
2024-04-12 09:55:38 +02:00
2024-02-12 07:44:26 +01:00
2024-02-11 11:02:18 +01:00