A 3x3 matrix of bools.
| Property | Description |
|---|---|
| c0 | Column 0 of the matrix. |
| c1 | Column 1 of the matrix. |
| c2 | Column 2 of the matrix. |
| this[int] | Returns the bool3 element at a specified index. |
| Constructor | Description |
|---|---|
| bool3x3 | Constructs a bool3x3 matrix from three bool3 vectors. |
| Method | Description |
|---|---|
| Equals | Returns true if the bool3x3 is equal to a given bool3x3, false otherwise. |
| GetHashCode | Returns a hash code for the bool3x3. |
| ToString | Returns a string representation of the bool3x3. |
| Operator | Description |
|---|---|
| bool3x3 | Implicitly converts a single bool value to a bool3x3 matrix by assigning it to every component. |
| operator ! | Returns the result of a componentwise not operation on a bool3x3 matrix. |
| operator != | Returns the result of a componentwise not equal operation on two bool3x3 matrices. |
| operator & | Returns the result of a componentwise bitwise and operation on two bool3x3 matrices. |
| operator ^ | Returns the result of a componentwise bitwise exclusive or operation on two bool3x3 matrices. |
| operator == | Returns the result of a componentwise equality operation on two bool3x3 matrices. |
| operator | | Returns the result of a componentwise bitwise or operation on two bool3x3 matrices. |