Revision: 2928
http://sourceforge.net/p/swingme/code/2928
Author: yuranet
Date: 2025-10-23 20:35:13 +0000 (Thu, 23 Oct 2025)
Log Message:
-----------
rotate added
Modified Paths:
--------------
me4se/src/javax/microedition/lcdui/Graphics.java
Modified: me4se/src/javax/microedition/lcdui/Graphics.java
===================================================================
--- me4se/src/javax/microedition/lcdui/Graphics.java 2025-10-23 20:20:14 UTC (rev 2927)
+++ me4se/src/javax/microedition/lcdui/Graphics.java 2025-10-23 20:35:13 UTC (rev 2928)
@@ -735,4 +735,11 @@
}
}
+ public void rotate(double theta) {
+ if (awtGraphics instanceof Graphics2D) {
+ Graphics2D g2 = (Graphics2D)awtGraphics;
+ g2.rotate(theta);
+ }
+ }
+
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|