-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSATSimulator.acm
More file actions
36 lines (31 loc) · 900 Bytes
/
SATSimulator.acm
File metadata and controls
36 lines (31 loc) · 900 Bytes
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
model Main(simulator) =
initially
_3D = (), _3DView = ()
always
_3D = (
Sphere // Earth Obj.
center = (0,0,0)
radius = 1
color = 0.35*blue + 0.65*white
rotation = (0,0,0)
transparency = 0.7
Text // Earth (home) Text
center=(2,0,0)
color=blue
coordinates = "camera"
content="Earth (home)"
Box //Satellite Obj.
center = (2,2,0)
rotation = (0,0,0)
size=(0.1,0.1,0.1)
color= 0.5*yellow + 0.5*blue
Text // Satellite Text
center=(2.2,2,0)
rotation = (0,0,0)
color=black
coordinates = "global"
content="Satellite"
),
_3DView = (
(0,-10,0), (0, 0, 0)
)