Skip to content

Commit 46e9edf

Browse files
committed
fix: 🐛 return a as array not transpose
1 parent 3b93f7f commit 46e9edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LoopStructural/interpolators/supports/_3d_structured_grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def get_element_for_location(self, pos):
471471
# vertices = vertices.reshape((vertices.shape[1], 8, 3))
472472
elements, inside = self.position_to_cell_corners(pos)
473473
a = self.position_to_dof_coefs(pos)
474-
return vertices, a.T, elements, inside
474+
return vertices, a, elements, inside
475475

476476
def get_elements(self):
477477
return

0 commit comments

Comments
 (0)