class: MatrixTransform2x3
authorClaus Gittinger <cg@exept.de>
Sun, 21 Dec 2014 22:24:04 +0100
changeset 3426 22e436474a5e
parent 3425 ba8fa7476156
child 3427 a1c13cf17554
class: MatrixTransform2x3
MatrixTransform2x3.st
--- a/MatrixTransform2x3.st	Sun Dec 21 22:22:53 2014 +0100
+++ b/MatrixTransform2x3.st	Sun Dec 21 22:24:04 2014 +0100
@@ -88,27 +88,7 @@
         ^self new setScale: aPoint
 ! !
 
-!MatrixTransform2x3 class methodsFor:'*SVG-Morphic'!
 
-withSkew: aPoint
-	"Answer a new instancec set to skew by the given angles in the x and y directions."
-
-	^self identity setSkew: aPoint
-! !
-
-!MatrixTransform2x3 methodsFor:'*SVG-Morphic'!
-
-setSkew: aPoint
-	"Set the raw skew angles in the receiver"
-
-	| radX radY sx sy|
-	radX := aPoint x degreesToRadians.
-	radY := aPoint y degreesToRadians.
-	sx := radX tan.
-	sy  := radY  tan.
-	self a21: sx.
-	self a12: sy
-! !
 
 !MatrixTransform2x3 methodsFor:'accessing'!
 
@@ -410,6 +390,10 @@
 !MatrixTransform2x3 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MatrixTransform2x3.st,v 1.4 2014-12-21 21:22:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MatrixTransform2x3.st,v 1.5 2014-12-21 21:24:04 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libview2/MatrixTransform2x3.st,v 1.5 2014-12-21 21:24:04 cg Exp $'
 ! !