Extra "ports" of juce-based plugins using the distrho build system
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- --- Rectangle Placement.
- -- Is converted to a [JUCE RectanglePlacement](http://www.juce.com/api/RectanglePlacement.html)
- -- @classmod juce.RectanglePlacement
-
- --- Rectangle Placement Constants.
- -- @table juce.RectanglePlacement
- local r = {
- xLeft = 1;
- xRight = 2;
- xMid = 4;
- yTop = 8;
- yBottom = 16;
- yMid = 32;
- stretchToFit = 64;
- fillDestination = 128;
- onlyReduceInSize = 256;
- onlyIncreaseInSize = 512;
- doNotResize = 768;
- centred = 4 + 32
- }
-
- return r
|