Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansys/mapdl/reader/cyclic_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1722,7 +1722,7 @@ def _gen_full_rotor(self):
sector_id = np.empty(grid.n_points)
sector_id[:] = i
sector.point_data['sector_id'] = sector_id
sector.rotate_z(rang * i)
sector.rotate_z(rang * i, inplace=True)
vtkappend.AddInputData(sector)

vtkappend.Update()
Expand Down
Loading