home *** CD-ROM | disk | FTP | other *** search
- package sun.awt.image;
-
- public class PNGImageDecoder$Chromaticities {
- public float whiteX;
- public float whiteY;
- public float redX;
- public float redY;
- public float greenX;
- public float greenY;
- public float blueX;
- public float blueY;
-
- PNGImageDecoder$Chromaticities(int var1, int var2, int var3, int var4, int var5, int var6, int var7, int var8) {
- this.whiteX = (float)var1 / 100000.0F;
- this.whiteY = (float)var2 / 100000.0F;
- this.redX = (float)var3 / 100000.0F;
- this.redY = (float)var4 / 100000.0F;
- this.greenX = (float)var5 / 100000.0F;
- this.greenY = (float)var6 / 100000.0F;
- this.blueX = (float)var7 / 100000.0F;
- this.blueY = (float)var8 / 100000.0F;
- }
-
- public String toString() {
- return "Chromaticities(white=" + this.whiteX + "," + this.whiteY + ";red=" + this.redX + "," + this.redY + ";green=" + this.greenX + "," + this.greenY + ";blue=" + this.blueX + "," + this.blueY + ")";
- }
- }
-