38 lines
604 B
Java
38 lines
604 B
Java
package fr.iutfbleau.sae.mimage;
|
|
|
|
public class Pixel{
|
|
private int r;
|
|
private int g;
|
|
private int b;
|
|
|
|
//à completer
|
|
public Pixel(int red, int green, int blue){
|
|
this.r=red;
|
|
this.g=green;
|
|
this.b=blue;
|
|
}
|
|
|
|
public int getB() {
|
|
return b;
|
|
}
|
|
|
|
public int getG() {
|
|
return g;
|
|
}
|
|
|
|
public int getR() {
|
|
return r;
|
|
}
|
|
|
|
public void setR(int r) {
|
|
this.r = r;
|
|
}
|
|
|
|
public void setB(int b) {
|
|
this.b = b;
|
|
}
|
|
|
|
public void setG(int g) {
|
|
this.g = g;
|
|
}
|
|
} |