Skip to content

Commit

Permalink
Merge pull request #39 from mpds-io/projections
Browse files Browse the repository at this point in the history
fix matrix nonformers partially removing
  • Loading branch information
blokhin authored Sep 1, 2024
2 parents 966ca35 + 46ee8b7 commit faef5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plot/matrix/matrix.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ namespace $.$$ {
} )

this.links_traversed().cells_map.forEach( cell => {
matrix[cell.y][cell.x] = cell
matrix[cell.y][cell.x] = {...cell}
matrix[cell.x][cell.y] = {...cell, x: cell.y, y: cell.x} // NB only AB-all
})

Expand Down

0 comments on commit faef5ef

Please sign in to comment.