blob: 72afc007032695f59110796e96c094ec9771017d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package structs
import "C"
type Star2D struct {
C Vec2 // coordinates of the star
V Vec2 // velocity of the star
M float64 // mass of the star
}
func (s *Star2D) Copy() Star2D {
return Star2D{s.C.Copy(), s.V.Copy(), s.M}
}
// accelerate the star with the acceleration a for the time t
func (s *Star2D) AccelerateVelocity(a Vec2, t float64) {
s.V = s.V.Add(a.Multiply(t))
}
// move the star with it's velocity for the time t
func (s *Star2D) Move(t float64) {
s.C = s.C.Add(s.V.Multiply(t))
}
// accelerate and move the star with it's velocity and the acceleration a for the time t
func (s *Star2D) Accelerate(a Vec2, t float64) {
s.AccelerateVelocity(a, t)
s.Move(t)
}
|