10 lines
247 B
Go
10 lines
247 B
Go
|
|
package d2sequence
|
||
|
|
|
||
|
|
// min horizontal pad for actors, or edge labels, to consider the min distance between them
|
||
|
|
const MIN_HORIZONTAL_PAD = 50.
|
||
|
|
|
||
|
|
const MIN_ACTOR_DISTANCE = 200.
|
||
|
|
|
||
|
|
// min vertical distance between edges
|
||
|
|
const MIN_EDGE_DISTANCE = 100.
|