species road {
aspect base {
draw (shape + 3.0) at_location (location + 1.5) color: #gray;
draw shape color: #yellow ;
}
}
--
You received this message because you are subscribed to the Google Groups "GAMA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gama-platfor...@googlegroups.com.
To post to this group, send email to gama-p...@googlegroups.com.
Visit this group at http://groups.google.com/group/gama-platform.
For more options, visit https://groups.google.com/d/optout.
bool to_south <- shape.points[0].y < shape.points[length(shape.points) - 1].y;
draw (shape + 3.0) at_location (location + (to_south ? 1.5 : - 1.5)) color: #gray;
--