Geometric.st
branchjv
changeset 19478 1f5aa87f6170
parent 18120 e3a375d5f6a8
parent 19471 b3ae4ee92ecc
child 21024 8734987eb5c7
--- a/Geometric.st	Fri Mar 25 06:29:08 2016 +0000
+++ b/Geometric.st	Sat Mar 26 07:56:10 2016 +0000
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#Geometric
 	instanceVariableNames:''
 	classVariableNames:'Scale InverseScale'
@@ -458,7 +460,7 @@
 !
 
 outlineIntersects:aRectangle
-    "return true, if the receivers image intersects
+    "return true, if the receiver's image intersects
      aRectangle, when drawn as an outline.
      Here, all we can do is to ask the boundary rectangle;
      subclasses should reimplement better checks."
@@ -469,7 +471,7 @@
 !
 
 regionIntersects:aRectangle
-    "return true, if the receivers image intersects
+    "return true, if the receiver's image intersects
      aRectangle, when drawn as a filled version.
      Here, all we can do is to ask the boundary rectangle;
      subclasses should reimplement better checks."
@@ -652,7 +654,7 @@
 !Geometric class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Geometric.st,v 1.33 2014-07-10 12:23:28 cg Exp $'
+    ^ '$Header$'
 ! !