1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-23 13:34:16 -04:00
OpenDiablo2/d2common/d2math/d2vector/doc.go
danhale-git 54ff33c552
Benchmark d2math (#595)
* Vector and tests reviewed.

* Tests and benchmarks for d2math.math.

Also docs/comments.
2020-07-17 18:50:07 -04:00

6 lines
329 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 and Rotate do not (per the unit
tests) return exact values but ones within Epsilon range of the expected value.*/
package d2vector