Geometric.st
changeset 19471 b3ae4ee92ecc
parent 16745 64cf7619ded9
child 19478 1f5aa87f6170
child 20801 705f8006e386
--- a/Geometric.st	Fri Mar 25 17:12:21 2016 +0100
+++ b/Geometric.st	Fri Mar 25 17:12:54 2016 +0100
@@ -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$'
 ! !