Files
EasyAi/src/main/java/org/dromara/easyai/entity/RGB.java
2025-09-04 14:09:09 +08:00

42 lines
588 B
Java

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