We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 944e3e3 commit 106168cCopy full SHA for 106168c
1 file changed
src/networks_fenicsx/mesh.py
@@ -282,16 +282,13 @@ def _original_order(a, b):
282
cell_markers.append(edge_coloring[(segment[0], segment[1])])
283
start = vertex_coords[segment[0]]
284
end = vertex_coords[segment[1]]
285
- in_order = _original_order(segment[0], segment[1])
286
else:
287
for segment in cells_array:
288
start_coord_pos = mesh_nodes.shape[0]
289
290
291
internal_line_coords = start * (1 - line_weights) + end * line_weights
292
293
294
-
295
mesh_nodes = np.vstack((mesh_nodes, internal_line_coords))
296
cells.append(np.array([segment[0], start_coord_pos], dtype=np.int64))
297
segment_connectivity = (
0 commit comments