I have an icon defined like that:
speakerIcon = Graphics[{ Triangle[{{0, -1}, {1,1},{-1,1}}], Rectangle[{-1, -1},{1, 0}] }, ImageSize->20] I can display that icon in an arbitrary color by wrapping it inside Show:
Show[Graphics[FaceForm[Pink]], speakerIcon] But how to draw only the outline of the icon? Using EdgeForm does not work since it displays the outline of each component of the graphic object:
Show[ Graphics[FaceForm[]], Graphics[EdgeForm[{Thick,Blue}]], speakerIcon, ImageSize->100 ] FWIW, I suspect I didn't follow the "right" path by defining my region as a Graphics. Maybe using Region would have been better? I'm open to any suggestions.





