Skip to content

Commit f09a8f4

Browse files
committed
fix(ImageMarchingSquares): lint fix - prettier
1 parent f655318 commit f09a8f4

File tree

1 file changed

+2
-2
lines changed
  • Sources/Filters/General/ImageMarchingSquares

1 file changed

+2
-2
lines changed

Sources/Filters/General/ImageMarchingSquares/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ function vtkImageMarchingSquares(publicAPI, model) {
178178
}
179179
if (pId === undefined) {
180180
const t =
181-
(cVal - pixelScalars[edgeVerts[0]]) /
182-
(pixelScalars[edgeVerts[1]] - pixelScalars[edgeVerts[0]]);
181+
(cVal - pixelScalars[edgeVerts[0]]) /
182+
(pixelScalars[edgeVerts[1]] - pixelScalars[edgeVerts[0]]);
183183
const x0 = pixelPts.slice(edgeVerts[0] * 3, (edgeVerts[0] + 1) * 3);
184184
const x1 = pixelPts.slice(edgeVerts[1] * 3, (edgeVerts[1] + 1) * 3);
185185
xyz[0] = x0[0] + t * (x1[0] - x0[0]);

0 commit comments

Comments
 (0)