-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassDiagrams.plantuml
90 lines (76 loc) · 1.32 KB
/
ClassDiagrams.plantuml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
@startuml
!theme blueprint
hide circle
hide empty members
class Control {
+ Position: Vector2
+ Size: Vector2
+ _Ready(): void
+ _Draw(): void
+ QueueRedraw(): void
}
class GPlot {
+ Plot: Plot
+ XAxis: XAxis
+ YAxis: YAxis
+ _Ready(): void
+ _Draw(): void
}
class Plot {
- Elements: Element[]
+ GridColor: Color
+ GridTicksX: int
+ GridTicksY: int
+ IsGrid: bool
- DrawGrid(): void
+ _Draw(): void
+ CreateBar(): Bar
+ CreateLine(): Line
+ CreateScatter(): Scatter
+ GetMaxValue(): Vector2
+ GetMinValue(): Vector2
}
' + FrameColor: Color
' + IsFrame: bool
' - DrawFrame(): void
class XAxis {
+ FontColor: Color
+ FontSize: int
+ MaxValue: float
+ MinValue: float
+ Ticks: int
}
class YAxis {
+ FontColor: Color
+ FontSize: int
+ MaxValue: float
+ MinValue: float
+ Ticks: int
}
class Element {
+ X: float[]
+ Y: float[]
+ MaxValue: Vector2
+ MinValue: Vector2
+ Normalize(): Vector2[]
}
class Bar extends Element {
+ BarColor: Color
+ BarWeight: int
+ _Draw(): void
}
class Line extends Element {
+ LineColor: Color
+ LineWeight: int
+ _Draw(): void
}
class Scatter extends Element {
+ MarkerColor: Color
+ MarkerSize: Int
+ _Draw(): void
}
GPlot "1" *-- "1" Plot
GPlot "1" *-- "1" XAxis
GPlot "1" *-- "1" YAxis
Plot "1" *-- "*" Element
@enduml