属性矢量运算

Modify an attribute with a math operation.

../../../_images/modeling_geometry-nodes_attribute_attribute-vector-math_node.png

The Attribute Vector Math Node.

输入

几何数据(Geometry)

Standard geometry input.

A, B, C

The inputs to the math operations. Depending on the operation one, two, or all three of the inputs will be used. The attribute types are all vectors of three values, except for the Scale operation, where the second input uses a float type.

结果

The name of the attribute where the computed result it stored. A new attribute with that name is added if it does not exist yet. If it does exist, the values of the existing attribute are overridden.

属性

操作

The math function to perform.

  • 相加

    The sum of A and B.

    相减

    The difference between A and B.

    正片叠底(相乘)

    A和B逐项相乘。(A.x * B.x, A.y * B.y, A.z * B.z)

    相除

    The entrywise division of A by B. Division by zero results in zero. \((A.x / B.x, A.y / B.y, A.z / B.z)\)

    叉乘

    The cross product of A and B.

    投影

    A在B上的投影。

    反射

    The reflection of A around the normal B. B need not be normalized.

    折射

    For a given incident vector A, surface normal B and ratio of indices of refraction (IOR) refract outputs the refraction vector R.

    面朝前

    Orients a vector A to point away from a surface B as defined by its normal C. Computes \((dot(B, C) < 0) ? A : -A\).

    点乘

    The dot product of A and B.

    距离

    A和B之间的距离。

    长度

    The length of A.

    比例

    A与标量输入 缩放 相乘的结果。

    规格化

    The result of normalizing A.

    包裹

    Wrap.

    吸附

    将A舍入为B小于或等于A的最大整数倍的结果。

    基面

    A的基面。

    向上取整

    A的逐项取整。

    模数

    A通过B逐项取模。

    分数

    A的小数部分。

    绝对

    A的逐项取绝对值。

    最小值

    A和B中的输入最小值。

    最大值

    A和B的输入最大值。

    正弦

    The entrywise Sine of A.

    余弦

    The entrywise Cosine of A.

    切向(正切)

    The entrywise Tangent of A.

Note

Attributes are converted implicitly to the input data type.

A, B, C

  • 属性

    A text field to input an attribute name.

    矢量

    The input is a vector of three float numbers.

输出

几何数据(Geometry)

Standard geometry output.

例子

Here are nodes to move points along the normals of a mesh or points from the Point Distribute node. First the normal attribute is moved to the Point domain. Then it is normalized, the length is changed, and it is added to the position. The Factor input could instead be an attribute to vary the displacement per point.

../../../_images/modeling_geometry-nodes_attribute_attribute-vector-math_example.png