We now have a general pattern we can always use to send a message:
target-dot-msg
Syntax may vary slightly depending on the algorithm/programming code type. Message params/args are not shown here for conciseness. We'll learn about these soon.
<target><dot><msg>()
target = the target (receiver) object of the message
dot = .
msg = the message name
The drawing has three shapes it is sending messages to.
Then the sub-objects may also send more messages -- one example is shown where a Circle sends the message "move" to it's "center" (which is a "Point" object).