Repository metrics
- Stars
- (56 個のスター)
- PR merge metrics
- (PR metrics pending)
説明
I thought we already had an issue for this, but apparently not!
Motivation: Lots of tree figures (e.g. Figure 1a in this paper I was reading) have a "gap" between between the start and end angle in the circular layout, which can look nice. In EMPress, we don't have this sort of gap by default, so the tree takes up an entire 360 degrees (or 2pi radians) of space:

Changing this when re-doing the circular layout is actually pretty simple -- we should only need to adjust one line:
Changing the numerator in this line from 2*pi to 1.9*pi gives us this:

...And just 1*pi, for reference:

This even works well with barplots out of the box:

It should be possible to add a UI element (ideally the sort of thing that is only visible when the circular layout is active) that adjusts this value -- I guess it would be most user-friendly to take inputs in degrees and then transform them to radians internally.
A solution to this issue would pair really well with #359, although the issues aren't necessarily dependent on each other or anything.