I want to make 2 turtles(a male and a female) get married. I have 2 different shapes for males and females in my simulation.
If a female meets a male on the same patch, they get married. When they do, I want to bundle them as one unit (i.e. I want to delete one of the turtles, and change the other to a third shape indicating a married couple).
How can I do this. I am already lost at the "meeting" stage.
What I have:
if any? other turtle-here with [?????]
Pseudocode: if female on_same_patch_as_male:
change her marital-status to married
Remove [one of the two turtles]
change the shape of the remaining turtle to "married-couple-icon"
Any help is appreciated