summaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
authorNicolas Schodet2008-04-04 13:03:49 +0200
committerNicolas Schodet2008-04-04 13:03:49 +0200
commit5f18e0647d7a282a30850c4690b4292f1f7b2540 (patch)
treed2adfe8046d6cf4665f2c887c3b7b0693d026013 /host
parenta196211836efb555aede4fce4d161e7d327ca719 (diff)
* host/inter:
- added copyright info.
Diffstat (limited to 'host')
-rw-r--r--host/inter/drawable.py24
-rw-r--r--host/inter/inter.py24
-rw-r--r--host/inter/trans_matrix.py24
3 files changed, 72 insertions, 0 deletions
diff --git a/host/inter/drawable.py b/host/inter/drawable.py
index 103c1fe7..b7ffbc02 100644
--- a/host/inter/drawable.py
+++ b/host/inter/drawable.py
@@ -1,3 +1,27 @@
+# inter - Robot simulation interface. {{{
+#
+# Copyright (C) 2008 Nicolas Schodet
+#
+# APBTeam:
+# Web: http://apbteam.org/
+# Email: team AT apbteam DOT org
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# }}}
+"""Drawable and DrawableCanvas."""
from math import sqrt, degrees
import trans_matrix
import Tkinter
diff --git a/host/inter/inter.py b/host/inter/inter.py
index 8071bcba..e87e05c3 100644
--- a/host/inter/inter.py
+++ b/host/inter/inter.py
@@ -1,3 +1,27 @@
+# inter - Robot simulation interface. {{{
+#
+# Copyright (C) 2008 Nicolas Schodet
+#
+# APBTeam:
+# Web: http://apbteam.org/
+# Email: team AT apbteam DOT org
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# }}}
+"""Inter and its childrens."""
from Tkinter import *
from drawable import *
diff --git a/host/inter/trans_matrix.py b/host/inter/trans_matrix.py
index e41991d6..dcaab134 100644
--- a/host/inter/trans_matrix.py
+++ b/host/inter/trans_matrix.py
@@ -1,3 +1,27 @@
+# inter - Robot simulation interface. {{{
+#
+# Copyright (C) 2008 Nicolas Schodet
+#
+# APBTeam:
+# Web: http://apbteam.org/
+# Email: team AT apbteam DOT org
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# }}}
+"""TransMatrix utility."""
from math import sin, cos, sqrt, atan2
class TransMatrix: