d2/d2layouts/d2sequence/constants.go

25 lines
711 B
Go
Raw Normal View History

2022-11-28 19:41:44 +00:00
package d2sequence
2022-11-28 21:08:52 +00:00
// leaves at least 25 units of space on the left/right when computing the space required between actors
const HORIZONTAL_PAD = 50.
2022-11-28 19:41:44 +00:00
2022-11-29 18:18:32 +00:00
// leaves at least 25 units of space on the top/bottom when computing the space required between edges
const VERTICAL_PAD = 50.
2022-11-28 19:41:44 +00:00
const MIN_ACTOR_DISTANCE = 200.
// min vertical distance between edges
const MIN_EDGE_DISTANCE = 100.
2022-11-29 01:06:37 +00:00
2022-11-29 03:20:53 +00:00
// default size
2022-11-29 23:17:47 +00:00
const SPAN_BOX_WIDTH = 20.
2022-11-29 02:23:51 +00:00
2022-11-29 23:17:47 +00:00
// small pad so that edges don't touch lifelines and span boxes
const SPAN_BOX_EDGE_PAD = 5.
2022-11-29 19:53:30 +00:00
2022-11-29 23:17:47 +00:00
// as the span boxes start getting nested, their size grows
const SPAN_BOX_DEPTH_GROW_FACTOR = 10.
2022-11-29 03:20:53 +00:00
2022-11-29 23:17:47 +00:00
// when a span box has a single edge
const MIN_SPAN_BOX_HEIGHT = MIN_EDGE_DISTANCE / 2.