Re: Is Sunflow limited in Sweet Home 3D?

by ndorigatti » Fri May 04, 2018 2:04 pm

Hi, looking online:
#91895E is rgb(145, 137, 94)

if I take the negative value:

Code: Select all

int negative = -7239330;
    int r = (negative >> 16) & 0xFF;
	int g = (negative >> 8) & 0xFF;
	int b = negative & 0xFF;
    System.out.println(r);
    System.out.println(g);
    System.out.println(b);
the output is:
145
137
94