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 8c02474 commit 9ed62e2Copy full SHA for 9ed62e2
src/ospgrillage/mesh.py
@@ -631,8 +631,8 @@ def _orthogonal_meshing(self):
631
current_sweep_nodes = self._rotate_edge_sweep_nodes(current_sweep_nodes)
632
633
for z_count_int, nodes in enumerate(current_sweep_nodes):
634
- x_inc = start_point_x
635
- z_inc = start_point_z
+ x_inc = 0 # start_point_x
+ z_inc = 0 # start_point_z
636
node_coordinate = [nodes[0] + x_inc, nodes[1], nodes[2] + z_inc]
637
self._assign_node_coordinate(
638
node_coordinate, z_count_int=z_count_int
0 commit comments