===== Range ===== A range of integer numbers, represented with a minimum and maximum value. The defined minimum value is inclusive of the represented values while the **maximum is not included**. For example, given a min of ``2`` and a max of ``5``, the range would represent the values ``2, 3, 4``. A range can be defined as an integer representing just a singular number. For example a range defined as ``3`` is equivalent to a range with a min of ``3`` and a max of ``3+1`` or ``4``. When defined under a parameter called ``range`` this would look like: .. code:: yaml range: 3 To specify the minimum and maximum values, a range can be defined as a map with the following parameters: .. _object-range-template-base-map-parameter-max: :bdg-ref-primary:`max ` :doc:`/config/documentation/objects/Integer` - The maximum value (exclusive) of the range. .. _object-range-template-base-map-parameter-min: :bdg-ref-primary:`min ` :doc:`/config/documentation/objects/Integer` - The minimum value (inclusive) of the range. When defined under a parameter called ``range`` this would look like: .. code:: yaml range: min: 2 max: 5 Uses ==== Used by 14 parameters: - :ref:`In GAUSSIAN_RANDOM in Locator `: :bdg-ref-primary:`height ` :doc:`/config/documentation/objects/Range` - :ref:`In PATTERN in Locator `: :bdg-ref-primary:`range ` :doc:`/config/documentation/objects/Range` - :ref:`In TOP in Locator `: :bdg-ref-primary:`range ` :doc:`/config/documentation/objects/Range` - :ref:`In SET in Extrusion `: :bdg-ref-primary:`range ` :doc:`/config/documentation/objects/Range` - :ref:`In SURFACE in Locator `: :bdg-ref-primary:`range ` :doc:`/config/documentation/objects/Range` - :ref:`In RANDOM in Locator `: :bdg-ref-primary:`height ` :doc:`/config/documentation/objects/Range` - :ref:`In RANDOM in Locator `: :bdg-ref-primary:`amount ` :doc:`/config/documentation/objects/Range` - :ref:`In GAUSSIAN_RANDOM in Locator `: :bdg-ref-primary:`amount ` :doc:`/config/documentation/objects/Range` - :ref:`In MATCH_SOLID in Pattern `: :bdg-ref-primary:`offset ` :doc:`/config/documentation/objects/Range` - :ref:`In REPLACE in Extrusion `: :bdg-ref-primary:`range ` :doc:`/config/documentation/objects/Range` - :ref:`In ADJACENT_PATTERN in Locator `: :bdg-ref-primary:`range ` :doc:`/config/documentation/objects/Range` - :ref:`In MATCH_AIR in Pattern `: :bdg-ref-primary:`offset ` :doc:`/config/documentation/objects/Range` - :ref:`In MATCH_SET in Pattern `: :bdg-ref-primary:`offset ` :doc:`/config/documentation/objects/Range` - :ref:`In MATCH in Pattern `: :bdg-ref-primary:`offset ` :doc:`/config/documentation/objects/Range`