This commit is contained in:
2025-09-04 14:09:09 +08:00
parent 6e3674decc
commit 0fbf25d121

View File

@@ -0,0 +1,41 @@
package org.dromara.easyai.entity;
public class RGB {
public RGB() {
}
public RGB(float r, float g, float b) {
this.r = r;
this.g = g;
this.b = b;
}
private float r;
private float g;
private float b;
public float getR() {
return r;
}
public void setR(float r) {
this.r = r;
}
public float getG() {
return g;
}
public void setG(float g) {
this.g = g;
}
public float getB() {
return b;
}
public void setB(float b) {
this.b = b;
}
}