diff --git a/src/main/java/org/dromara/easyai/entity/RGB.java b/src/main/java/org/dromara/easyai/entity/RGB.java new file mode 100644 index 0000000..d2c07d3 --- /dev/null +++ b/src/main/java/org/dromara/easyai/entity/RGB.java @@ -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; + } +}