OrientedFillStyle.st
changeset 6669 5f4fa919b1f8
parent 6668 1f4bae731ea7
child 6687 706f61ac0637
--- a/OrientedFillStyle.st	Fri Dec 19 16:15:37 2014 +0100
+++ b/OrientedFillStyle.st	Fri Dec 19 16:16:16 2014 +0100
@@ -27,39 +27,14 @@
 "
 ! !
 
-!OrientedFillStyle methodsFor:'*Rome-Balloon'!
-
-installOnRomePluginCanvas: aCanvas
-
-	form asRomePluginSourceFormDuring: [ :f |
-		aCanvas primFillBitmapOriginX: origin x asFloat
-				 	y: origin y asFloat
-					directionX: direction x asFloat / f width
-					y: direction y asFloat / f height
-					normalX: self normal x asFloat / f width
-					y: self normal y asFloat / f height
-					repeat: self isTiled
-					image: f].
-
-!
-
-transformBy: aTransform
-	origin := aTransform transformPoint: self origin.
-	normal := aTransform transformDirection: self normal. "is lazy initialized and uses direction"
-	direction := aTransform transformDirection: self direction.
-!
-
-transformedBy: aTransform
-	^self copy transformBy: aTransform
-! !
 
 !OrientedFillStyle class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/OrientedFillStyle.st,v 1.1 2014-12-19 15:15:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/OrientedFillStyle.st,v 1.2 2014-12-19 15:16:16 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/OrientedFillStyle.st,v 1.1 2014-12-19 15:15:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/OrientedFillStyle.st,v 1.2 2014-12-19 15:16:16 cg Exp $'
 ! !