Skip to content

Commit

Permalink
add ideas for more layouts, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
swhalemwo committed Mar 13, 2020
1 parent 96a8cf8 commit cc17469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ obvz is intended primarily as a digital sketch board rather than a sophisticated
- prevent edge overlap in reciprocal relations
- node properties visualization
- more node shapes
- more layout algorithms
- more layout algorithms (plantUML?, mermaid?)
- rewrite force-directed layout algorithm in C/C++
- fixate/manually position nodes
- re-integrate with EAF
Expand Down
2 changes: 1 addition & 1 deletion layout_optim/ovlp_func_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def pythran_itrtr_cbn(pos,pos_nds, A,row_order, dim_ar, t,def_itr,rep_nd_brd_sta


# --------------- delta calcs

# what is happening here
length = np.sqrt(np.sum(displacement**2, axis = -1))
length = np.where(length < 0.01, 0.1, length)

Expand Down

0 comments on commit cc17469

Please sign in to comment.