Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cairoplot/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cairoplot/__init__.py')
-rwxr-xr-xcairoplot/__init__.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/cairoplot/__init__.py b/cairoplot/__init__.py
index d47bdaf..efb2ee2 100755
--- a/cairoplot/__init__.py
+++ b/cairoplot/__init__.py
@@ -1,34 +1,3 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-# CairoPlot.py
-#
-# Copyright (c) 2008 Rodrigo Moreira Araújo
-#
-# Author: Rodrigo Moreiro Araujo <alf.rodrigo@gmail.com>
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser 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 Lesser 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
-
-#Contributor: João S. O. Bueno
-
-#TODO: review BarPlot Code
-#TODO: x_label colision problem on Horizontal Bar Plot
-#TODO: y_label's eat too much space on HBP
-
-
__version__ = 1.1
import cairo
@@ -707,7 +676,6 @@ class ScatterPlot( Plot ):
cr.line_to( x, self.dimensions[VERT] - y)
cr.set_line_width(self.series_widths[number])
- # Display line as dash line
if self.dash and self.dash[number]:
s = self.series_widths[number]
cr.set_dash([s*3, s*3], 0)