mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 20:15:28 -04:00
Fixed typo
This commit is contained in:
parent
370505b62f
commit
1a67e1721e
2
twelvemonkeys-imageio/pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/RGBColor.java
Executable file → Normal file
2
twelvemonkeys-imageio/pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/RGBColor.java
Executable file → Normal file
@ -38,7 +38,7 @@ import java.awt.*;
|
||||
* @version $Id: RGBColor.java,v 1.0 Mar 2, 2009 10:39:24 AM haraldk Exp$
|
||||
*/
|
||||
class RGBColor extends Color {
|
||||
// TODO: Is the 16 bit resolution ever signigicant?
|
||||
// TODO: Is the 16 bit resolution ever significant?
|
||||
public RGBColor(short r, short g, short b) {
|
||||
super((r & 0xffff) / (float) 0xffff, (g & 0xffff) / (float) 0xffff, (b & 0xffff) / (float) 0xffff);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user