Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  AffineTransform#createTransformedShape(GeneralPath)  (Read 1083 times)
0 Members and 1 Guest are viewing this topic.
Offline NVaidya

Junior Member




Java games rock!


« Posted 2006-05-31 20:31:25 »

Would appreciate some help with the following please:

My application which works correctly with jdk1.5.0_06 fails with the following ClassCastException with Mustang b85 (-source 1.5):
1  
java.lang.ClassCastException: java.awt.geom.Path2D$Double cannot be cast to java.awt.geom.GeneralPath


when I try to retrieve a transformed GeneralPath as follows:
1  
GeneralPath outputGeneralPath  = (GeneralPath)affineTransform.createTransformedShape( inputGeneralPath );


From a quick look at the source code for 1.5 and 1.6 for the method createTransformedShape(...), it appears that 1.5 can conditionally return a GeneralPath, while 1.6 unconditionally returns a Path2D.Double, and the exception occurs because GeneralPath extends Path2D.Float.

Am I missing anythin' obvious ?

Thanks in advance

Gravity Sucks !
Offline ryanm
« League of Dukes »

Senior Member


Projects: 1


Used to be bleb


« Reply #1 - Posted 2006-05-31 20:41:46 »

In trying to make the cast to a GeneralPath, you're making an unsafe assumption about the implementation of createTransformedShape(), which is liable to change at any time.

Hows about coding to the API -rather than the implementation- like so:
1  
GeneralPath outputGeneralPath = new GeneralPath( affineTransform.createTransformedShape( inputGeneralPath ) );
Offline trembovetski

Senior Member




If only I knew what I'm talking about!


« Reply #2 - Posted 2006-05-31 22:01:21 »

Bleb is correct - you shouldn't cast the return of createTransformedShape().

Here's the fix which caused the change:
   4172661: GeneralPath needs double version
   http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4172661

Thanks,
  Dmitri
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline NVaidya

Junior Member




Java games rock!


« Reply #3 - Posted 2006-06-02 00:20:47 »

Thanks for the quick help guys ! alright, I get the big picture now after reading  that Bug Fix.   
After looking at the 1.5 docs again, I think I could actually get away with clobbering the input data with an in-place transform by doing inputGeneralPath.transform( affineTransform ) since I really didn't need to keep the original data around. I'm using the GeneralPath to build a couple of hand-crafted icons to display in the ToolBar, and the application was crashing right at the start-up.

Thanks again !

Gravity Sucks !
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (82 views)
2013-05-17 21:29:12

alaslipknot (91 views)
2013-05-16 21:24:48

gouessej (122 views)
2013-05-16 00:53:38

gouessej (114 views)
2013-05-16 00:17:58

theagentd (126 views)
2013-05-15 15:01:13

theagentd (113 views)
2013-05-15 15:00:54

StreetDoggy (158 views)
2013-05-14 15:56:26

kutucuk (180 views)
2013-05-12 17:10:36

kutucuk (180 views)
2013-05-12 15:36:09

UnluckyDevil (187 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.089 seconds with 20 queries.