Function
|
Description
|
void SetFade(float value)
|
Sets the Fade value, which defines how fast the shapes disappear in BPM. Valid values for value range from 1 to 3000.
|
float GetFade()
|
Returns the current Fade in BPM.
|
void SetSize(float value)
|
Sets the Size value, which is the size of the shapes, in percent of the matrix size (depending on the shape alignment). The size value means the minimum shape size if the shape size distribution mode is not uniform. Valid values for value range from 0.01 to 1000.
|
float GetSize()
|
Returns the current Size of the shapes in percent. The return value means the minimum shape size if the shape size distribution mode is not uniform.
|
void SetPixelSize(int value)
|
Sets the Size value, which is the size of the shapes, in pixels. The size value means the minimum shape size if the shape size distribution mode is not uniform. Valid values for value range from 1 to ten times the matrix size (depending on the shape alignment).
|
int GetPixelSize()
|
Returns the current Size of the shapes in pixels. The return value means the minimum shape size if the shape size distribution mode is not uniform.
|
void SetSizeMax(float value)
|
Sets the Maximum Size value, which is the maximum size of the shapes, in percent of the matrix size (depending on the shape alignment). The maximum size value only applies if the shape size distribution mode is not uniform. Valid values for value range from 0.01 to 1000.
|
float GetSizeMax()
|
Returns the current Maximum Size of the shapes in percent.
|
void SetPixelSizeMax(int value)
|
Sets the Maximum Size value, which is the maximum size of the shapes, in pixels. The maximum size value only applies if the shape size distribution mode is not uniform. Valid values for value range from 1 to ten times the matrix size (depending on the shape alignment).
|
int GetPixelSizeMax()
|
Returns the current Maximum Size of the shapes in pixels.
|
void SetSizeDistribution(int value)
|
Sets the size Distribution value, which defines how the range between the current minimum and the current maximum shape size is applied to the shapes. See »here for a list of constants.
|
int GetSizeDistribution()
|
Returns the current size Distribution of the shapes. See »here for a list of constants.
|
void SeedRandomSize()
|
Randomizes the sizes of the shapes. Is the same as SetSizeDistribution(DIST_RND).
|
void SetPitch1(float value)
|
Sets the Pitch 1 value, which is the x-distance of the shapes, in percent of the matrix size. Valid values for value range from 0.01 to 100.
|
float GetPitch1()
|
Returns the current Pitch 1 of the shapes in percent.
|
void SetPixelPitch1(int value)
|
Sets the Pitch 1 value, which is the x-distance of the shapes, in pixels. Valid values for value range from 1 to the matrix size.
|
int GetPixelPitch1()
|
Returns the current Pitch 1 of the shapes in pixels.
|
void SetPitch2(float value)
|
Sets the Pitch 2 value, which is the y-distance of the shapes, in percent of the matrix size. Valid values for value range from 0.01 to 100.
|
float GetPitch2()
|
Returns the current Pitch 2 of the shapes in percent.
|
void SetPixelPitch2(int value)
|
Sets the Pitch 2 value, which is the y-distance of the shapes, in pixels. Valid values for value range from 1 to the matrix size.
|
int GetPixelPitch2()
|
Returns the current Pitch 2 of the shapes in pixels.
|
void SetPitch3(float value)
|
Sets the Pitch 3 value, which is the z-distance of the shapes, in percent of the matrix size. Valid values for value range from 0.01 to 100.
|
float GetPitch3()
|
Returns the current Pitch 3 of the shapes in percent.
|
void SetPixelPitch3(int value)
|
Sets the Pitch 3 value, which is the z-distance of the shapes, in pixels. Valid values for value range from 1 to the matrix size.
|
int GetPixelPitch3()
|
Returns the current Pitch 3 of the shapes in pixels.
|
void SetPitch(float x, float y, float z)
|
Sets the pitches 1, 2 and 3 of the shapes at once, in percent of the matrix size. Valid values for x, y and z range from 0.01 to 100.
|
void SetPixelPitch(int x, int y, int z)
|
Sets the pitches 1, 2 and 3 of the shapes at once, in pixels. Valid values for x, y and z range from 1 to the matrix size.
|
void SetAlphaMix(int value)
|
Sets the Alpha Mix value, which defines the variance of the shapes' alpha channel, in percent. Valid values for value range from 0 to 100.
|
int GetAlphaMix()
|
Returns the current Alpha Mix in percent.
|