forked from expressoman/ewa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructures.go
76 lines (61 loc) · 887 Bytes
/
structures.go
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package ewa
import "time"
//Point struc
type Point struct {
T time.Time
P float64
}
//Move struc
type Move struct {
Base *Point
End *Point
}
//Wave struc
type Wave struct {
*Move
WaveDegree DegreeType
Prev *Wave
Next *Wave
Parent *Wave
}
//Impulse struc
type Impulse struct {
*Wave
W1 *Impulse
W2 *Correction
W3 *Impulse
W4 *Correction
W5 *Impulse
}
//Correction struc
type Correction struct {
*Wave
Zigzag *Zigzag
Flat *Flat
Triangle *Triangle
Combo *Combo
Triple *Triple
}
// Corrective structures
//Zigzag struct
type Zigzag struct {
A, C *Impulse
B *Correction
}
//Flat struct
type Flat struct {
A, B *Correction
C *Impulse
}
//Triangle struct
type Triangle struct {
A, B, C, D, E *Correction
}
//Combo struct
type Combo struct {
W, X, Y *Correction
}
//Triple struct
type Triple struct {
W, X, Y, X2, Z *Correction
}