public pRGB rgb(int iA, int iR, int iG, int iB) { pRGB set = new pRGB(); set.A = iA; set.R = iR; set.G = iG; set.B = iB; return(rgb(set)); }
public pHSV hsv(pHSV set) { if (set.A != -1) { pcHSV = set; pcRGB = new pRGB(); } return(pcHSV); }
public pRGB rgb(pRGB set) { if (set.A != -1) { pcRGB = set; pcHSV = new pHSV(); } return(pcRGB); }