Vetor3.addAdd()
Método de instância em Vector3.
Descrição
- Increments this Vector3 by 1. |
Method Signature
addAdd()
Mathematical Definition
Component-wise or runtime-defined transformation based on overload.
Parameters
- None.
Retorna
void: returned by overloads of this method.
Mutability
- Mutates o atual vector (in-place).
Edge Cases
- Zero vectors can produce degenerate outputs for geometric methods.
NaNandInfinityinputs propagate according to IEEE-754 floating-point behavior.- Repeated operations may accumulate floating-point precision error.
Usage Example
Vector3 a = new Vector3(1f, 2f, 3f);
// Call the method according to your overload requirements.
// Example:
// a.addAdd(...);
Mathematical Example
Example input/output depends on overload; for vector arithmetic operations this is typically computed per-component.