Point.st
branchjv
changeset 18858 2968df243134
parent 17911 a99f15c5efa5
parent 18840 1aaad31ce49d
child 18896 00f8282955aa
--- a/Point.st	Fri Oct 16 07:01:59 2015 +0200
+++ b/Point.st	Wed Oct 28 07:44:54 2015 +0000
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 ArithmeticValue subclass:#Point
 	instanceVariableNames:'x y'
 	classVariableNames:'PointZero PointOne'
@@ -313,7 +315,7 @@
 !Point methodsFor:'coercing & converting'!
 
 coerce:anObject
-    "convert the argument aNumber into an instance of the receivers class and return it."
+    "convert the argument aNumber into an instance of the receiver's class and return it."
 
     ^ anObject asPoint
 !
@@ -639,6 +641,7 @@
     y := y + anOffset y
 ! !
 
+
 !Point methodsFor:'interpolating'!
 
 interpolateTo: end at: amountDone
@@ -1184,13 +1187,14 @@
 !Point class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Point.st,v 1.73 2009/05/26 06:31:07 cg Exp $'
+    ^ '$Header$'
 !
 
 version_SVN
     ^ '$Id: Point.st 10761 2012-01-19 11:46:00Z vranyj1 $'
 ! !
 
+
 Point initialize!