Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


bool4x4

A 4x4 matrix of bools.
Read time 2 minutesLast updated 4 days ago

Definition

public struct bool4x4 : IEquatable<bool4x4>

Fields

Value

Description

c0Column 0 of the matrix.
c1Column 1 of the matrix.
c2Column 2 of the matrix.
c3Column 3 of the matrix.

Constructors

Properties

Property

Description

this[]Returns the bool4 element at a specified index.

Methods

Method

Description

EqualsReturns true if the bool4x4 is equal to a given bool4x4, false otherwise.
GetHashCodeReturns a hash code for the bool4x4.
ToStringReturns a string representation of the bool4x4.

Operators

Operator

Description

operator &Returns the result of a componentwise bitwise and operation on a bool value and a bool4x4 matrix.
operator |Returns the result of a componentwise bitwise or operation on a bool value and a bool4x4 matrix.
operator ==Returns the result of a componentwise equality operation on a bool value and a bool4x4 matrix.
operator ^Returns the result of a componentwise bitwise exclusive or operation on a bool value and a bool4x4 matrix.
bool4x4Implicitly converts a single bool value to a bool4x4 matrix by assigning it to every component.
operator !=Returns the result of a componentwise not equal operation on a bool value and a bool4x4 matrix.
operator !Returns the result of a componentwise not operation on a bool4x4 matrix.