summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorventor3000 <r.k.persson@gmail.com>2013-07-25 16:01:40 +0200
committerventor3000 <r.k.persson@gmail.com>2013-07-25 16:01:40 +0200
commit691246358572c2fabcef216f850a8712836b1642 (patch)
tree0c3c651cf5477db106b50f4f8ab05cc2056f52de
parent97810e1850928d6ea75cdc271af8926adacaae54 (diff)
downloadNim-691246358572c2fabcef216f850a8712836b1642.tar.gz
Added file header
-rw-r--r--lib/pure/basic2d.nim11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/pure/basic2d.nim b/lib/pure/basic2d.nim
index 1c10a7234..c315b6b00 100644
--- a/lib/pure/basic2d.nim
+++ b/lib/pure/basic2d.nim
@@ -1,3 +1,12 @@
+#
+#
+#            Nimrod's Runtime Library
+#        (c) Copyright 2013 Robert Persson
+#
+#    See the file "copying.txt", included in this
+#    distribution, for details about the copyright.
+#
+
 import math
 import strutils
 
@@ -56,7 +65,7 @@ type
       ## transformations are applied the order they are concatenated.
       ## The rightmost column of the 3x3 matrix is left out since normally
       ## not used for geometric transformations in 2d.
-      ax*,ay*,bx*,by*,tx*,ty*:float #do not change order of thoose, addr of ax is used elsewhere!
+      ax*,ay*,bx*,by*,tx*,ty*:float
     TPoint2d* = object
       ## Implements a non-homegeneous 2d point stored as 
       ## an `x` coordinate and an `y` coordinate.