Skip to content

Commit

Permalink
ruff lint
Browse files Browse the repository at this point in the history
  • Loading branch information
otvam committed Jan 21, 2025
1 parent 6cce1ea commit e12d1c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pypeec/lib_mesher/mesher_stl.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ def _get_point_test(d, pts):

# get the quadrature points
(v_vec, w_vec) = spe.roots_legendre(pts)
x_vec = v_vec*dx/2
y_vec = v_vec*dy/2
z_vec = v_vec*dz/2
x_vec = v_vec * dx / 2
y_vec = v_vec * dy / 2
z_vec = v_vec * dz / 2

# span the voxel points
[x_vec, y_vec, z_vec] = np.meshgrid(x_vec, y_vec, z_vec)
Expand Down

0 comments on commit e12d1c4

Please sign in to comment.