bkryza / clang-uml

Customizable automatic UML diagram generator for C++ based on Clang.
Apache License 2.0
592 stars 40 forks source link

Add option to fold repeated activities in sequence diagrams #317

Closed bkryza closed 2 weeks ago

bkryza commented 2 weeks ago

Currently, any function or method called multiple times in the span of a single sequence diagram is rendered fully every time it's called, which can generate very large diagrams for some code bases.

There should be an option to enable folding of repeated activities, so that any activity is rendered fully only once and then only a call to that activity is rendered but folded with some indicator...

Might be relevant for #316