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 (404)
games submitted by our members
Games in WIP (289)
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  
  Image not rotating around its center...  (Read 318 times)
0 Members and 1 Guest are viewing this topic.
Offline v0rtex

Senior Newbie





« Posted 2012-10-06 12:30:24 »

Hey all,

I am working on a new game and I have decided to try my hand at rotation. After looking at a few tutorials and learning, I came up with this:

AnimatedSprite.java - handles the actual animation,rotation and movement of sprite

http://pastebin.java-gaming.org/827c3257f21

Entity.java - just a class that handles the default attributes that all sprites will share

http://pastebin.java-gaming.org/27c353f7123

And finally MainFrame.java which just tests our code

http://pastebin.java-gaming.org/7c35f417320

The problem lies in my transform() method of AnimatedSprite.java

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
   public void transform() {
      at.setToIdentity();
      //translate to center of component
     at.translate(this.getX() +  getImageWidth() / 2,
            this.getY() + getImageHeight() / 2);
      //do rotation
     at.rotate(Math.toRadians(getFaceAngle()));
      //translate so the rotation occurs around the center of the object
     at.translate(-getImageWidth() / 2, -getImageHeight() / 2); //is something going wrong here?
  }


When I rotate the image, it rotates but it doesn't seem to rotate around the center of the image as can be seen in the screenshot below:



Any help is appreciated but I will keep working on this. Thanks!
Offline v0rtex

Senior Newbie





« Reply #1 - Posted 2012-10-06 14:01:37 »

Found the problem... What a stupid mistake it was haha. My getImageWidth() and getImageHeight() were not returning the correct value of 48
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!
 
Get high quality music tracks 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 (44 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (159 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.078 seconds with 20 queries.