Sets alpha and RGB used when stroking and filling. The color is four floating point values, unpremultiplied. The color values are interpreted as being in sRGB. @param color unpremultiplied RGBA @return this
(@NotNull Color4f color)
| 216 | * @return this |
| 217 | */ |
| 218 | @NotNull @Contract("!null -> this; null -> fail") |
| 219 | public Paint setColor4f(@NotNull Color4f color) { |
| 220 | return setColor4f(color, null); |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * Sets alpha and RGB used when stroking and filling. The color is four floating |
no test coverage detected