-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworld.py
More file actions
40 lines (26 loc) · 1.16 KB
/
world.py
File metadata and controls
40 lines (26 loc) · 1.16 KB
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
'''
====== Legal notices
Copyright (C) 2013 - 2021 GEATEC engineering
This program is free software.
You can use, redistribute and/or modify it, but only under the terms stated in the QQuickLicense.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY, without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the QQuickLicense for details.
The QQuickLicense can be accessed at: http://www.qquick.org/license.html
__________________________________________________________________________
THIS PROGRAM IS FUNDAMENTALLY UNSUITABLE FOR CONTROLLING REAL SYSTEMS !!
__________________________________________________________________________
It is meant for training purposes only.
Removing this header ends your license.
'''
import os
import sys as ss
ss.path.append (os.path.abspath ('../..')) # If you want to store your simulations somewhere else, put SimPyLC in your PYTHONPATH environment variable
import simpylc as sp
import sequence as sc
import robot as rb
import control as ct
import visualisation as vs
import timing as tm
sp.World (sc.Sequence, ct.Control, rb.Robot, vs.Visualisation, tm.Timing)