fixed shebangs in non executable .py files
[nepi.git] / src / nepi / util / graphical_info.py
1 # -*- coding: utf-8 -*-
2
3 class GraphicalInfo(object):
4     """ This class allows to describe the position and dimensions of a 
5     2D object in a GUI canvas"""
6     def __init__(self):
7         self.x = 0.0
8         self.y = 0.0
9         self.width = 0.0
10         self.height = 0.0
11