Bool3
constructor(x: Boolean, y: Boolean, z: Boolean)
Constructs a new Bool3 instance with the specified x, y, z components.
Parameters
x
x coordinate.
y
y coordinate.
z
z coordinate.
constructor(value: Boolean)
Constructs a Bool3 instance where all three values (x, y, z) are set to the specified boolean value.
Parameters
value
The boolean value to set for x, y, and z.
Constructs a Bool3 instance by copying values from another Bool3 instance.
Parameters
other
The Bool3 instance to copy values from.