[Bf-docboard-svn] bf-manual: [7992] branches/blender-2.93-release/blender_docs/manual: Geometry Nodes: Add Attribute Map Range Node

Aaron Carlisle noreply at blender.org
Tue Apr 27 06:46:27 CEST 2021


Revision: 7992
          https://developer.blender.org/rBM7992
Author:   Blendify
Date:     2021-04-27 06:46:26 +0200 (Tue, 27 Apr 2021)
Log Message:
-----------
Geometry Nodes: Add Attribute Map Range Node

rBdda02a448a38a5f5f4b0df1738bec3b158ce739f

Modified Paths:
--------------
    branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/index.rst

Added Paths:
-----------
    branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_example.png
    branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_node.png
    branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/attribute_map_range.rst

Added: branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_example.png
===================================================================
(Binary files differ)

Index: branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_example.png
===================================================================
--- branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_example.png	2021-04-27 04:05:22 UTC (rev 7991)
+++ branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_example.png	2021-04-27 04:46:26 UTC (rev 7992)

Property changes on: branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_example.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_node.png
===================================================================
(Binary files differ)

Index: branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_node.png
===================================================================
--- branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_node.png	2021-04-27 04:05:22 UTC (rev 7991)
+++ branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_node.png	2021-04-27 04:46:26 UTC (rev 7992)

Property changes on: branches/blender-2.93-release/blender_docs/manual/images/modeling_geometry-nodes_attribute_attribute-map_node.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/attribute_map_range.rst
===================================================================
--- branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/attribute_map_range.rst	                        (rev 0)
+++ branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/attribute_map_range.rst	2021-04-27 04:46:26 UTC (rev 7992)
@@ -0,0 +1,72 @@
+.. index:: Geometry Nodes; Attribute Map Range
+.. _bpy.types.GeometryNodeAttributeMapRange:
+
+*******************
+Attribute Map Range
+*******************
+
+.. figure:: /images/modeling_geometry-nodes_attribute_attribute-map_node.png
+   :align: right
+
+   The Attribute Map node.
+
+The *Map Range* node remaps an attribute's value from a range to a target range.
+
+
+Inputs
+======
+
+Attribute
+   The input attribute whose valued is to be remapped.
+Result
+   Name of the attribute where the computed result it stored.
+   If an attribute with this name does not exist yet,
+   a new attribute with the same data type of the *Attribute* is used.
+   If it does exist, the values of the existing attribute are overridden.
+From Min
+   The lower bound of the range to remap from.
+From Max
+   The higher bound of the range to remap from.
+To Min
+   The lower bound of the target range.
+To Max
+   The higher bound of the target range.
+Steps
+   The number of values allowed between *To Max* and *To Max* when using *Stepped Linear* interpolation.
+   A higher value will give a smoother interpolation while lower values will progressively quantize the input.
+Clamp
+   If enabled, the output is clamped to the target range.
+
+
+Properties
+==========
+
+Attribute
+   The name of the attribute to map with the value.
+
+Data Type
+   This determines the data type of the result attribute.
+   This also changes the Min and Max inputs to match the data type.
+
+Interpolation Type
+   The mathematical method used to transition between gaps in the numerical inputs.
+
+   :Linear: Linear interpolation between From Min and From Max values.
+   :Stepped Linear: Stepped linear interpolation between From Min and From Max values.
+   :Smooth Step: Smooth Hermite edge interpolation between From Min and From Max values.
+   :Smoother Step: Smoother Hermite edge interpolation between From Min and From Max values.
+
+
+Outputs
+=======
+
+Geometry
+   Standard geometry output.
+
+
+Example
+=======
+
+.. figure:: /images/modeling_geometry-nodes_attribute_attribute-map_example.png
+
+   Attribute Map node used to adjust a vertex group.


Property changes on: branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/attribute_map_range.rst
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/index.rst
===================================================================
--- branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/index.rst	2021-04-27 04:05:22 UTC (rev 7991)
+++ branches/blender-2.93-release/blender_docs/manual/modeling/geometry_nodes/attribute/index.rst	2021-04-27 04:46:26 UTC (rev 7992)
@@ -12,6 +12,7 @@
    attribute_compare.rst
    attribute_convert.rst
    attribute_fill.rst
+   attribute_map_range.rst
    attribute_math.rst
    attribute_mix.rst
    attribute_proximity.rst



More information about the Bf-docboard-svn mailing list