Package | Description |
---|---|
heronarts.lx |
Core LX engine and component functionality.
|
heronarts.lx.audio |
Modulator classes for real-time audio analysis.
|
heronarts.lx.blend | |
heronarts.lx.clip | |
heronarts.lx.color |
Classes for color manipulation, blending, color values.
|
heronarts.lx.effect |
Layer components that mutate existing buffers with standardized enable/disable.
|
heronarts.lx.effect.color | |
heronarts.lx.effect.midi | |
heronarts.lx.midi |
Integration with MIDI devices.
|
heronarts.lx.mixer | |
heronarts.lx.modulation |
Components that control automated modulation of parameter values.
|
heronarts.lx.modulator |
Utility abstraction for values that vary over time.
|
heronarts.lx.osc | |
heronarts.lx.output |
Output support for various networking protocols.
|
heronarts.lx.parameter |
Abstraction for values that may be monitored and controlled via UI.
|
heronarts.lx.pattern |
Core classes for procedural animation.
|
heronarts.lx.pattern.color | |
heronarts.lx.pattern.form | |
heronarts.lx.pattern.test | |
heronarts.lx.pattern.texture | |
heronarts.lx.scheduler | |
heronarts.lx.snapshot | |
heronarts.lx.structure | |
heronarts.p3lx.pattern |
Modifier and Type | Class and Description |
---|---|
class |
LXComponent
Core base class for any component in the LX tree.
|
class |
LXDeviceComponent
A component which may have its own scoped user-level modulators.
|
class |
LXEngine
The engine is the core class that runs the internal animations.
|
class |
LXEngine.Output |
class |
LXLayer
A layer is a components that has a run method and operates on some other
buffer component.
|
class |
LXLayeredComponent
Base class for system components that run in the engine, which have common
attributes, such as parameters, modulators, and layers.
|
class |
LXModelComponent
A component that keeps a reference to a particular model, which may
potentially be different than the global model.
|
class |
LXModelLayer<T extends LXModel>
Templatized version of the LXLayerclass, which strongly types a particular model.
|
class |
LXModulatorComponent |
class |
LXRunnableComponent |
class |
Tempo
Class to represent a musical tempo at which patterns are operating.
|
Modifier and Type | Method and Description |
---|---|
static LXPath |
LXPath.get(LXComponent root,
String path)
Globally retrieves an LX parameter at a certain scope in the LX hierarchy
|
static LXPath |
LXPath.get(LX lx,
String path)
Globally retrieves an LX object with a path in the hierarchy
|
Modifier and Type | Method and Description |
---|---|
boolean |
LXComponent.contains(LXPath that)
Determines whether the given LX object is contained by this
parent, at any depth in the tree of child components and parameters.
|
Modifier and Type | Class and Description |
---|---|
class |
BandGate
A frequency gate monitors a Graphic Meter for a particular frequency range and
triggers when that range passes a certain threshold.
|
class |
DecibelMeter
A DecibelMeter is a modulator that returns the level of an audio signal.
|
class |
GraphicMeter
A graphic meter splits the signal into frequency bands and computes
envelopes for each of the bands independently.
|
class |
LXAudioComponent |
class |
LXAudioEngine |
class |
LXAudioInput |
class |
LXAudioOutput |
Modifier and Type | Class and Description |
---|---|
class |
AddBlend |
class |
DarkestBlend |
class |
DifferenceBlend |
class |
DissolveBlend
The dissolve blend is a special blend used in the crossfader.
|
class |
LightestBlend |
class |
LXBlend
An LXBlend is a loop-based implementation of a compositing algorithm.
|
static class |
LXBlend.FunctionalBlend |
class |
MultiplyBlend |
class |
NormalBlend |
class |
ScreenBlend |
class |
SubtractBlend |
Modifier and Type | Class and Description |
---|---|
class |
LXAbstractChannelClip |
class |
LXChannelClip |
class |
LXClip |
class |
LXClipEngine |
class |
LXClipEngine.FocusedClipParameter |
class |
LXGroupClip |
class |
LXMasterClip |
Modifier and Type | Class and Description |
---|---|
class |
ColorParameter |
class |
DiscreteColorParameter
Utility class with a discrete selection of colors that are shown by a UI picker
device.
|
class |
LXDynamicColor
A dynamic color is a color that has a few different settings that allows it to either
be fixed or to change its value over time.
|
class |
LXPalette
A palette is an object that is used to keep track of top-level color values and
set modes of color computation.
|
class |
LXSwatch
A swatch is a set of up to 5 dynamic colors that can be referenced by patterns and effects.
|
Modifier and Type | Class and Description |
---|---|
class |
BlurEffect |
class |
DynamicsEffect |
class |
HueSaturationEffect |
class |
InvertEffect |
class |
LXEffect
Class to represent an effect that may be applied to the color array.
|
static class |
LXEffect.Placeholder
Placeholder pattern for when a class is missing
|
class |
LXModelEffect<T extends LXModel> |
class |
SparkleEffect |
class |
StrobeEffect |
Modifier and Type | Class and Description |
---|---|
class |
ColorizeEffect |
Modifier and Type | Class and Description |
---|---|
class |
GateEffect |
Modifier and Type | Class and Description |
---|---|
class |
LXMidiEngine |
Modifier and Type | Class and Description |
---|---|
class |
LXAbstractChannel
Abstract subclass for both groups and channels
|
class |
LXBus
Abstract representation of a channel, which could be a normal channel with patterns
or the master channel.
|
class |
LXChannel
A channel is a single component of the engine that has a set of patterns from
which it plays and rotates.
|
class |
LXGroup |
class |
LXMasterBus
Represents the master channel.
|
class |
LXMixerEngine
Encapsulation of all the LX channel blending and mixer
|
Modifier and Type | Class and Description |
---|---|
class |
LXCompoundModulation |
class |
LXModulationEngine |
class |
LXParameterModulation |
class |
LXTriggerModulation |
Modifier and Type | Class and Description |
---|---|
class |
Accelerator
An accelerator is a free-running modulator that changes its value based on
velocity and acceleration, measured in units/second and units/second^2,
respectively.
|
class |
Accumulator
An accumulator oscillates between increasing and decreasing value by some velocity such that it never
overflows or stops moving outside of the floating point range.
|
class |
ADEnvelope |
class |
ADSREnvelope |
class |
Click
A click is a simple modulator that fires a value of 1 every time its period
has passed.
|
class |
DampedParameter
A modulator that tracks the value of a parameter but damps motion over time according
to rules.
|
class |
FunctionalModulator
An extendable modulator class that lets a custom normalized function be
supplied by simply extending this class and supplying a compute() and
invert() method.
|
class |
HistoryBuffer |
class |
LinearEnvelope
This modulator is a simple linear ramp from one value to another over a
specified number of milliseconds.
|
class |
LXModulator
A Modulator is an abstraction for a variable with a value that varies over
time, such as an envelope or a low frequency oscillator.
|
class |
LXPeriodicModulator
An LXPeriodicModulator is a modulator that moves through a cycle in a given
amount of time.
|
class |
LXRangeModulator
Utility subclass for modulators which oscillate in a range of values between
a minimum and a maximum.
|
class |
MacroKnobs |
class |
MultiStageEnvelope |
class |
QuadraticEnvelope
A quadratic envelope moves from one value to another along a quadratic curve.
|
class |
SawLFO
A sawtooth LFO oscillates from one extreme value to another.
|
class |
SinLFO
A classic sinusoidal oscillator.
|
class |
SquareLFO
Simple square wave LFO.
|
class |
TriangleLFO
A triangular LFO is a simple linear modulator that oscillates between a low
and hi value over a specified time period.
|
class |
VariableLFO
A sawtooth LFO oscillates from one extreme value to another.
|
Modifier and Type | Class and Description |
---|---|
class |
LXOscEngine |
Modifier and Type | Class and Description |
---|---|
class |
ArtNetDatagram |
class |
ArtSyncDatagram |
class |
DDPDatagram
Distributed Display Protocol is a simple protocol developed by 3waylabs.
|
class |
DDPOutputGroup
DDPOutput is a helper class that constructs and sends a set of DDPDatagram packets
based upon a specified chunk size, which will typically be a function of either
the LED layout or UDP network settings.
|
class |
FadecandySocket |
class |
KinetDatagram
A datagram implementing the Kinet protocol, used by Color Kinetics devices.
|
class |
LXBufferOutput |
class |
LXDatagram |
class |
LXOutput
This class represents the output stage from the LX engine to real devices.
|
class |
LXOutputGroup
Simple concrete output class which does nothing but group its children.
|
class |
LXSocket |
class |
OPCDatagram
UDP implementation of http://openpixelcontrol.org/
|
class |
OPCSocket
TCP/IP streaming socket implementation of http://openpixelcontrol.org/
|
class |
StreamingACNDatagram
Streaming ACN, also referred to as E1.31, is a standardized protocol for
streaming DMX data over ACN protocol.
|
Modifier and Type | Interface and Description |
---|---|
interface |
LXNormalizedParameter
A parameter that supports values in a normalized form, from 0 to 1.
|
interface |
LXParameter
This class provides a common interface for system components to have
parameters that can modify their operation.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanParameter
A simple parameter that has a binary value of off or on
|
class |
BoundedFunctionalParameter
A FunctionalParameter that is bounded by a range.
|
class |
BoundedParameter
Simple parameter class with a double value.
|
class |
CompoundParameter |
class |
DiscreteParameter
Parameter type with a discrete set of possible integer values.
|
class |
EnumParameter<T> |
class |
FixedParameter
A FixedParameter is an immutable parameter.
|
class |
FunctionalParameter
An LXParameter that has a value computed by a function, which may combine the
values of other parameters, or call some function, etc.
|
class |
LXListenableNormalizedParameter
A parameter that can be listened to and has normalized values.
|
class |
LXListenableParameter
This is a parameter instance that can be listened to, meaning we are able to
deterministically know when the value has changed.
|
class |
LXVirtualParameter
A virtual parameter is one that wraps or forwards to another real parameter.
|
class |
MutableParameter
A MutableParameter is a parameter that has a value which can be changed to anything.
|
class |
NormalizedParameter
Simple normalized parameter which is not listenable.
|
class |
ObjectParameter<T> |
class |
StringParameter
Parameter which contains a mutable String value.
|
Modifier and Type | Class and Description |
---|---|
class |
GraphicEqualizerPattern |
class |
LifePattern |
class |
LXModelPattern<T extends LXModel>
Templatized version of the LXPattern class, which strongly types a particular model.
|
class |
LXPattern
A pattern is the core object that the animation engine uses to generate
colors for all the points.
|
static class |
LXPattern.Placeholder
Placeholder pattern for when a class is missing
|
Modifier and Type | Class and Description |
---|---|
class |
GradientPattern |
class |
SolidPattern |
Modifier and Type | Class and Description |
---|---|
class |
PlanesPattern |
class |
PlanesPattern.Plane |
Modifier and Type | Class and Description |
---|---|
class |
TestPattern
Braindead simple test pattern that iterates through all the nodes turning
them on one by one in fixed order.
|
Modifier and Type | Class and Description |
---|---|
class |
NoisePattern |
class |
SparklePattern |
Modifier and Type | Class and Description |
---|---|
class |
LXScheduledProject |
class |
LXScheduler |
Modifier and Type | Class and Description |
---|---|
class |
LXSnapshot
A snapshot holds a memory of the state of the program at a point in time.
|
class |
LXSnapshotEngine
The snapshot engine stores snapshots in time of the state of project settings.
|
Modifier and Type | Class and Description |
---|---|
class |
ArcFixture |
class |
GridFixture |
class |
JsonFixture |
class |
LXBasicFixture
Class that represents a basic fixture with a fixed number of points,
no hierarchy, and that is addressed with a single datagram packet.
|
class |
LXFixture
An LXFixture is a rich LXComponent representing a physical lighting fixture which may
be addressed by output packets.
|
class |
LXProtocolFixture
Utility base class that adds a bunch of parameters to a fixture
object for selection of the most common protocols.
|
class |
LXStructure |
class |
LXStructure.Output |
class |
PointFixture |
class |
StripFixture |
Modifier and Type | Class and Description |
---|---|
class |
P3LXPattern |
LX library by Mark C. Slee. © 2012-2020