| 105 | /////////////////////////////////////////// |
| 106 | |
| 107 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Color color_hsv (float hue, float saturation, float value, float transparency); |
| 108 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Vec3 color_to_hsv(in Color color); |
| 109 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Color color_lab (float l, float a, float b, float transparency); |
| 110 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Vec3 color_to_lab(in Color color); |