mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-17 09:56:07 -05:00
259c6e7e76
* All Vector methods which operate on the vector return pointers to it. * All Vector methods which take vectors take Vector pointers.
6 lines
356 B
Go
6 lines
356 B
Go
// Package d2vector provides an implementation of a 2D Euclidean vector using float64 to store the two values.
|
|
/*
|
|
Vector uses d2math.Epsilon for approximate equality and comparison. Note: SetLength, Reflect, ReflectSurface and Rotate
|
|
do not (per their unit tests) return exact values but ones within Epsilon range of the expected value.*/
|
|
package d2vector
|