[Bf-docboard-svn] bf-manual: [8874] trunk/blender_docs/manual/modeling/geometry_nodes/utilities/boolean_math.rst: Geometry Nodes: Expand the Boolean Math node

Hans Goudey noreply at blender.org
Tue Jan 25 23:16:18 CET 2022


Revision: 8874
          https://developer.blender.org/rBM8874
Author:   HooglyBoogly
Date:     2022-01-25 23:16:18 +0100 (Tue, 25 Jan 2022)
Log Message:
-----------
Geometry Nodes: Expand the Boolean Math node

rB14f6afb09003903a25872e6b05c67411db5e5267

Modified Paths:
--------------
    trunk/blender_docs/manual/modeling/geometry_nodes/utilities/boolean_math.rst

Modified: trunk/blender_docs/manual/modeling/geometry_nodes/utilities/boolean_math.rst
===================================================================
--- trunk/blender_docs/manual/modeling/geometry_nodes/utilities/boolean_math.rst	2022-01-25 22:03:56 UTC (rev 8873)
+++ trunk/blender_docs/manual/modeling/geometry_nodes/utilities/boolean_math.rst	2022-01-25 22:16:18 UTC (rev 8874)
@@ -10,7 +10,7 @@
 
    Boolean Math Node.
 
-The *Boolean Math* node performs a basic logical operation between its inputs.
+The *Boolean Math* node performs a basic logical operation on its inputs.
 
 
 Inputs
@@ -24,11 +24,36 @@
 ==========
 
 Mode
-   :And: True if both inputs are true.
-   :Or: True if either or both inputs are true.
-   :Not: True if the input is false.
+   :And: 
+      True when both inputs are true.
+      (`AND <https://en.wikipedia.org/wiki/AND_gate>`__)
+   :Or: 
+      True when at least one input is true.
+      (`OR <https://en.wikipedia.org/wiki/OR_gate>`__)
+   :Not: 
+      Opposite of the input.
+      (`NOT <https://en.wikipedia.org/wiki/NOT_gate>`__)
+   :Not And: 
+      (True when at least one input is false.
+      `NAND <https://en.wikipedia.org/wiki/NAND_gate>`__)
+   :Nor: 
+      True when both inputs are false.
+      (`NOR <https://en.wikipedia.org/wiki/NOR_gate>`__)
+   :Equal: 
+      True when both inputs are equal. Also known as "exclusive nor".
+      (`XNOR <https://en.wikipedia.org/wiki/XNOR_gate>`__)
+   :Not Equal: 
+      (`XOR <https://en.wikipedia.org/wiki/XOR_gate>`__)
+      True when both inputs are different. Also known as "exclusive or".
+   :Imply: 
+      True unless the first input is true and the second is false.
+      (`IMPLY <https://en.wikipedia.org/wiki/IMPLY_gate>`__)
+   :Subtract: 
+      True when the first input is true and the second is false. Also known as ""not imply".
+      (`NIMPLY <https://en.wikipedia.org/wiki/NIMPLY_gate>`__)
 
 
+
 Output
 ======
 



More information about the Bf-docboard-svn mailing list