Vector3.divZ()
Instance method on Vector3.
Description
- Divides the Z component of this Vector3 by the specified value. |
Method Signature
divZ(float)
Mathematical Definition
Component-wise or runtime-defined transformation based on overload.
Parameters
float: scalar numeric input.
Returns
void: returned by overloads of this method.
Mutability
- Mutates the current vector (in-place).
Edge Cases
- Division by zero can produce
InfinityorNaN. - Very small denominators amplify floating-point noise.
- Runtime-specific guarding/clamping may apply in engine internals.
Usage Example
Vector3 a = new Vector3(1f, 2f, 3f);
// Call the method according to your overload requirements.
// Example:
// a.divZ(...);
Mathematical Example
Example input/output depends on overload; for vector arithmetic operations this is typically computed per-component.