I am drawing some strings on a JPanel, but I dont want to these string to be drawn over each other.
How can I check if there is a string on a point on my panel?
Thanks!
I am drawing some strings on a JPanel, but I dont want to these string to be drawn over each other.
How can I check if there is a string on a point on my panel?
Thanks!
Copyright © 2021 Jogjafile Inc.
You need keep track on all strings and their positions, and then use
java.awt.FontMetrics
to calculate a bounding box of your strings. Then all you have to do is to check the bounding boxes for intersection.