forked from expressoman/ewa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
76 lines (65 loc) · 1.17 KB
/
types.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
//DegreeType - type of wave degrees
type DegreeType uint
// Degrees of the wave
const (
_ = iota
Primary DegreeType = iota
Intermediate
Minor
Minute
Minuette
Subminuette
Micro
Submicro
Miniscule
Nano
Subnano
Pico
)
//waves
type waves []*wave
//WaveType type
type WaveType string
//Wave types
const (
Impulse WaveType = "impulse"
Correction = "correction"
)
//ImpulseType type
type ImpulseType string
//ImpulseType
const (
Simple ImpulseType = "simple"
Extended = "extended"
Diagonal = "diagonal"
)
//CorrectionType type
type CorrectionType string
//Correction types
const (
ZigZag CorrectionType = "zigzag"
Flat = "flat"
Triangle = "triangle"
Combo = "combo"
Triple = "triple"
)
//LabelType types
type LabelType string
//Label types
const (
W1 LabelType = "1"
W2 = "2"
W3 = "3"
W4 = "4"
W5 = "5"
A = "a"
B = "b"
C = "c"
D = "d"
E = "e"
W = "w"
X = "x"
Y = "y"
Z = "z"
)