changed:
authorClaus Gittinger <cg@exept.de>
Mon, 26 Oct 2009 22:15:26 +0100
changeset 2318 beeb4368c521
parent 2317 a56b5469246d
child 2319 c42bd6118058
changed: #controlPoints #controlPoints:
Spline.st
--- a/Spline.st	Mon Oct 26 22:15:19 2009 +0100
+++ b/Spline.st	Mon Oct 26 22:15:26 2009 +0100
@@ -183,8 +183,7 @@
 !Spline methodsFor:'accessing'!
 
 controlPoints
-    "return the collection of points through which the spline is
-     to pass"
+    "return the collection of points through which the spline is to pass"
 
     ^ controlPoints
 
@@ -192,8 +191,7 @@
 !
 
 controlPoints:aCollectionOfPoints
-    "set the collection of points through which the spline is
-     to pass"
+    "set the collection of points through which the spline is to pass"
 
     controlPoints := aCollectionOfPoints.
     lines := nil
@@ -562,5 +560,9 @@
 !Spline class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.16 2009-06-06 10:12:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.17 2009-10-26 21:15:26 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.17 2009-10-26 21:15:26 cg Exp $'
 ! !