1
vote
How do I find a dimension of aspect ratio 4:3 which fits within a predetermined size?
struct dimensions resize_to_fit_in(struct dimensions a, struct dimensions b) {
double wf, hf, f;
struct dimensions out;
wf = (double) b.w / a.w;
hf = (d …
