try
This commit is contained in:
parent
3e697b5e23
commit
95e0aaedd9
1 changed files with 5 additions and 0 deletions
|
|
@ -39,7 +39,12 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout d2graph.LayoutGraph) e
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// calculateRadius now guards against a division-by-zero error when there is only one object.
|
||||||
func calculateRadius(objects []*d2graph.Object) float64 {
|
func calculateRadius(objects []*d2graph.Object) float64 {
|
||||||
|
if len(objects) < 2 {
|
||||||
|
// When there is a single object, we can simply use MIN_RADIUS.
|
||||||
|
return MIN_RADIUS
|
||||||
|
}
|
||||||
numObjects := float64(len(objects))
|
numObjects := float64(len(objects))
|
||||||
maxSize := 0.0
|
maxSize := 0.0
|
||||||
for _, obj := range objects {
|
for _, obj := range objects {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue