Files
SAE32_2025/src/fr/iutfbleau/sae/mimage/Pixel.java
T
2026-01-03 13:08:16 +01:00

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;
}
}