Skip to content

Commit 2e2d1c6

Browse files
author
Lachlan Grose
committed
fix: temp removing rotate from structured support
1 parent 7e1121a commit 2e2d1c6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

LoopStructural/interpolators/supports/_3d_base_structured.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ def position_to_cell_index(self, pos):
174174
i,j,k indexes of the cell that the point is in
175175
"""
176176

177-
pos = self.rotate(pos)
178177
pos = self.check_position(pos)
179178

180179
ix = pos[:, 0] - self.origin[None, 0]
@@ -189,7 +188,6 @@ def position_to_cell_global_index(self, pos):
189188
ix, iy, iz = self.position_to_cell_index(pos)
190189

191190
def inside(self, pos):
192-
pos = self.rotate(pos)
193191
# check whether point is inside box
194192
inside = np.ones(pos.shape[0]).astype(bool)
195193
for i in range(3):

0 commit comments

Comments
 (0)