BehaviourComposer: ignore everything before this.
Begin micro-behaviour:
Begin description:
This plots all the planets on one graph using the planet colour.
End description
Plot distances
Begin NetLogo code:
set-current-plot "Planet Distances" create-temporary-plot-pen (word my-name " pen") set-plot-pen-color color let distance-com 0 if-else the-world-is-3-d? [ set distance-com distancexyz the-center-of-mass-xcor the-center-of-mass-ycor the-center-of-mass-zcor ] [ set distance-com distancexy the-center-of-mass-xcor the-center-of-mass-ycor ] let d precision (distance-scale * distance-com ) 3 if d != 0 [ add-to-plot time d ]
End NetLogo code
Authored by Ken Kahn. Based on a micro-behaviour by Maria Marinari and Ken Kahn
BehaviourComposer: ignore everything after this.