vector/vectorpoint.go

135 lines
2.6 KiB
Go
Raw Normal View History

2013-08-08 20:34:27 -07:00
package govector
import (
2013-08-08 20:36:15 -07:00
"math"
2013-08-08 20:34:27 -07:00
)
2013-11-24 14:25:19 -08:00
type AABB2d struct {
2013-09-27 01:31:35 -07:00
A Point2d `json:A`
B Point2d `json:B`
2013-08-08 21:54:52 -07:00
}
2013-11-24 14:25:19 -08:00
type Polygon2d struct {
Points []Vector2d `json:"points"`
Normals []Vector2d `json:"normals"`
Origin Point2d `json:"origin"`
}
2013-11-24 21:01:09 -08:00
func (p Polygon2d) Edge(i int) (Point2d, Vector2d) {
p1 := Point2d{}
p2 := Point2d{}
if i == len(p.Points)-1 {
p1 = p.Origin.Add(p.Points[i])
p2 = p.Origin.Add(p.Points[0])
} else {
p1 = p.Origin.Add(p.Points[i])
p2 = p.Origin.Add(p.Points[i+1])
2013-11-24 21:01:09 -08:00
}
return p1, p2.Sub(p1)
}
2013-08-08 20:36:15 -07:00
type Vector2d struct {
2013-10-19 16:15:27 -07:00
X float32 `json:"x"`
Y float32 `json:"y"`
2013-08-08 20:34:27 -07:00
}
2013-08-08 20:36:15 -07:00
type Point2d struct {
2013-10-19 16:15:27 -07:00
X float32 `json:"x"`
Y float32 `json:"y"`
2013-08-08 20:34:27 -07:00
}
2013-09-27 01:31:35 -07:00
const Epsilon = 1e-7
const Rad2deg = 180 / math.Pi
const Deg2rad = math.Pi / 180
2013-08-08 20:34:27 -07:00
2013-08-08 22:13:04 -07:00
func (p1 Point2d) Sub(p2 Point2d) Vector2d {
2013-08-08 21:54:52 -07:00
return Vector2d{p1.X - p2.X, p1.Y - p2.Y}
}
2013-08-08 22:13:04 -07:00
func (p Point2d) Add(v Vector2d) Point2d {
2013-08-08 21:54:52 -07:00
return Point2d{p.X + v.X, p.Y + v.Y}
2013-08-08 20:34:27 -07:00
}
2013-10-19 16:15:27 -07:00
func (v Vector2d) Mag() float32 {
return float32(math.Abs(math.Sqrt(float64(v.X*v.X) + float64(v.Y*v.Y))))
2013-08-08 20:34:27 -07:00
}
2013-08-08 21:54:52 -07:00
func (v Vector2d) MagSquared() float32 {
return float32(math.Abs(float64(v.X*v.X) + float64(v.Y*v.Y)))
}
2013-10-19 16:15:27 -07:00
func (v Vector2d) PopPop() float32 {
2013-08-08 22:13:04 -07:00
return v.Mag()
}
2013-10-19 16:15:27 -07:00
func (v Vector2d) Scale(s float32) Vector2d {
2013-08-08 21:54:52 -07:00
return Vector2d{v.X * s, v.Y * s}
}
2013-08-08 23:08:22 -07:00
2013-10-19 16:15:27 -07:00
func (v1 Vector2d) Cross(v2 Vector2d) float32 {
return v1.X*v2.Y - v1.Y*v2.X
}
2013-10-19 16:15:27 -07:00
func (v1 Vector2d) Dot(v2 Vector2d) float32 {
return (v1.X * v2.X) + (v1.Y * v2.Y)
}
func (p Point2d) ToVector() Vector2d {
return Vector2d{p.X, p.Y}
}
2013-10-19 16:15:27 -07:00
func (v1 Vector2d) Rotate(a float32) Vector2d {
x := float64(v1.X)*math.Cos(float64(a)) - float64(v1.Y)*math.Sin(float64(a))
y := float64(v1.X)*math.Sin(float64(a)) + float64(v1.Y)*math.Cos(float64(a))
return Vector2d{float32(x), float32(y)}
}
2013-11-24 14:25:19 -08:00
func PointInRect(p Point2d, r AABB2d) bool {
2013-09-27 01:31:35 -07:00
return (p.X > r.A.X) && (p.X < r.B.X) && (p.Y > r.A.Y) && (p.Y < r.B.Y)
}
2013-11-24 14:25:19 -08:00
func RectFromPoint(p Point2d, size float32) AABB2d {
return AABB2d{
2013-10-21 07:50:16 -07:00
A: Point2d{X: p.X - size, Y: p.Y - size},
B: Point2d{X: p.X + size, Y: p.Y + size}}
}
2013-11-24 14:25:19 -08:00
func PolygonFromAABB(r AABB2d) Polygon2d {
// TBD
return Polygon2d{}
2013-09-27 01:31:35 -07:00
}
2013-08-08 23:08:22 -07:00
func (v Vector2d) Normalize() Vector2d {
2013-08-08 23:14:18 -07:00
if v.X == 0 && v.Y == 0 {
return v
}
2013-08-08 23:08:22 -07:00
m := v.Mag()
return Vector2d{v.X / m, v.Y / m}
}
2013-09-03 23:32:57 -07:00
2013-10-19 16:15:27 -07:00
func Distance(p1, p2 Point2d) float32 {
2013-09-03 23:32:57 -07:00
return p1.Sub(p2).Mag()
}
2013-09-21 18:34:53 -07:00
2013-10-19 16:15:27 -07:00
func Angle(v1, v2 Vector2d) float32 {
2013-09-21 18:34:53 -07:00
x := (v1.Dot(v2) / (v1.Mag() * v2.Mag()))
2013-10-19 16:15:27 -07:00
angle := math.Acos(float64(x))
if math.IsNaN(angle) {
if math.Abs(float64(v1.X-v2.X)) > Epsilon {
return 180.0
} else {
return 0
}
}
// Determine the sign to see what direction
// the angle should go in
if v1.Y*v2.X > v1.X*v2.Y {
angle = angle * -1.0
}
2013-10-19 16:15:27 -07:00
return float32(angle)
2013-09-21 18:34:53 -07:00
}