I need this ear to be flush with the head. I want to merge it with the head like how you can merge shapes in Inkscape or Illustrator. I can’t do this by just making everything one shape using vertices and beginShape() and all that because this is part of a character creator and the user will have the option of picking different heads and different ears, so I don’t want to have a big 2D switch case thing where I have defined each possible combination of head and ears. I want to be able to draw the head, draw the ears, and have them merge somehow.
The solution that comes to mind is drawing the ears and head with double the normal stroke weight, and then draw both again but this time with no stroke. This would look okay, but it feels redundant. There’s gotta be a solution that doesn’t require me drawing the same thing twice.