-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add LXColor16 class; move the LXColor.Blend enum to BlendMode.
- Loading branch information
Showing
4 changed files
with
650 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package heronarts.lx.color; | ||
|
||
/** | ||
* Color blending modes | ||
*/ | ||
public enum BlendMode { | ||
LERP, | ||
ADD, | ||
SUBTRACT, | ||
MULTIPLY, | ||
SCREEN, | ||
LIGHTEST, | ||
DARKEST | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.