Files
SAE32_2025/src/fr/iutfbleau/sae/mimage/Pixel.java
T

36 lines
473 B
Java
Raw Normal View History

2025-12-19 15:36:57 +01:00
package fr.iutfbleau.sae;
public class Pixel{
private int r;
private int g;
private int b;
//à completer
public Pixel(){
}
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;
}
2025-12-19 15:36:57 +01:00
}