|
|
|
Golden ratio in GUI design
|
|
6 points
by paulreiners
6021 days ago
|
|
Does anyone else try to use the golden ratio in their GUI components? I've been doing this for awhile now and it does make them look better, I think. final double goldenRatio = 1.61803399;
dialog.setSize(
DIALOG_WIDTH,
(int) Math.round(DIALOG_WIDTH / goldenRatio));
|
|