Skip to content

Commit

Permalink
Bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
portnov committed Sep 15, 2024
1 parent ef778d4 commit b4b8817
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nodes/analyzer/poly_inscribed_circle.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ def process(self):
if circle is not None:
new_matrix.append(circle.get_matrix())
new_radius.append(circle.radius)
if self.flat_output:
matrix_out.extend(new_matrix)
else:
matrix_out.append(new_matrix)
radius_out.append(new_radius)
if self.flat_output:
matrix_out.extend(new_matrix)
else:
matrix_out.append(new_matrix)
radius_out.append(new_radius)

self.outputs['Center'].sv_set(matrix_out)
self.outputs['Radius'].sv_set(radius_out)
Expand Down

0 comments on commit b4b8817

Please sign in to comment.