From 5f18e0647d7a282a30850c4690b4292f1f7b2540 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Fri, 4 Apr 2008 13:03:49 +0200 Subject: * host/inter: - added copyright info. --- host/inter/drawable.py | 24 ++++++++++++++++++++++++ host/inter/inter.py | 24 ++++++++++++++++++++++++ host/inter/trans_matrix.py | 24 ++++++++++++++++++++++++ 3 files changed, 72 insertions(+) (limited to 'host/inter') 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: -- cgit v1.2.3