Extensions_Vector3 Class |
Namespace: ff14bot.Helpers
public static class Extensions_Vector3
The Extensions_Vector3 type exposes the following members.
Name | Description | |
---|---|---|
Add | Adds the provided X, Y, and Z offsets to Vector3 yielding a new Vector3. --- The HBcore only provides a version of this that accepts 'float' values. This version accepts 'doubles', because it is inefficient to keep truncating data types (to float) that are provided by the Math and other libraries. 'Double' performance is just as fast as 'Float'. Internally, modern computer architectures calculate using maximum precision (i.e., many bits bigger than double), then truncate the result to fit. The only benefit 'float' has over 'double' is storage space, which is negligible unless you've a database using billions of them. | |
AddPolarXZ | ||
FanOutRandom | Finds another point near the destination. Useful when toon is 'waiting' for something (e.g., boat, mob repops, etc). This allows multiple people running the same profile to not stand on top of each other while waiting for something. Notes:
| |
IsOverGround |
Returns true, if ground is within DISTANCE _below_ you.
|