Skip to content

Commit dc16bdc

Browse files
committed
Radial option for linear mask
1 parent 2b16594 commit dc16bdc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/heronarts/lx/effect/LinearMaskEffect.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ public enum Axis {
9494
Z("Z-axis",
9595
(p, t) -> { return p.zn; },
9696
(p, t) -> { return t.zn(p); }
97+
),
98+
99+
RADIAL("Radial",
100+
(p, t) -> { return p.rcn; },
101+
(p, t) -> { return p.rcn; }
97102
);
98103

99104
public final String label;

0 commit comments

Comments
 (0)