We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957fc28 commit b20fe23Copy full SHA for b20fe23
tidy3d/components/grid/mesher.py
@@ -97,7 +97,8 @@ def parse_structures(
97
98
# If empty simulation, return
99
if len(structures) == 1:
100
- return (domain_bounds, structure_steps)
+ interval_coords, max_steps = self.filter_min_step(domain_bounds, structure_steps)
101
+ return np.array(interval_coords), np.array(max_steps)
102
103
# Bounding boxes with the meshing axis rotated to z
104
struct_bbox = self.rotate_structure_bounds(structures, axis)
0 commit comments