Tagged Questions
2
votes
1answer
32 views
Matching of images according to two points
I have pattern image with set of points
and second tested image also with set of points. I know the coordinates x,y of points.
The points have their names (numbers), I know the numbers of all points ...
0
votes
0answers
31 views
Java collision detection with rotation
Basically I'm trying to make a game where you have little car going around the map with java and LWJGL. Everything was going good until I've started to do collisions. Well fist I'm trying to draw hit ...
1
vote
1answer
44 views
Set Camera Rotation in Libgdx
I can't seem to find a way to tie the rotation of my ortho camera in libgdx (project with box2d) to the rotation of a box2d body.
There is the method of cam.rotate(xy), giving it an impulse or ...
1
vote
1answer
46 views
AndEngine setRotationCenter moves rotated objects
I am trying to rotate an object from one point which is changing while rotating.
When I call to setRotationCenter(float,float) the IMAGE of the object moves to some arbitrary point. This only happens ...
0
votes
1answer
47 views
What is this? I can't understand this left rotate algorithm at all
I'm reading a book named Programming Pearls
In Part 1 chapter 2, the book introduces a complex left rotate algorithm.
input:
An array(length = n) like
char[] in = { 'a', 'b', 'c', 'd', 'e', 'f', ...
0
votes
1answer
41 views
3D coordinate rotation lacking Precision in perspective 2D
So I wrote a Program to draw and display a 3D cube, using these simple conversion formula's as used in isometric graphs:
x2 = x*cos(30) - y*cos(30)
y2 = x*sin(30) + y*sin(30) + z
The coordinate ...
0
votes
1answer
23 views
Rotating a PVector
ok guys i want to rotate a PVector that i have in this method.
this method replaces the posX and posY by the x and y of the PVector.
the movement is determinated by a joystick that comes from arduino ...
-1
votes
0answers
26 views
java - lwjgl - camera - setting camera on possition
i'm busy with a game and my friends aren't online to help so im here :D
try {
Display.setDisplayMode( new DisplayMode (640,480));
Display.setTitle("Voxel Game");
Display.create();
} catch ...
2
votes
0answers
84 views
How to rotate an object defined by x y z points around the x y or z axis
I'm working with a program where I visualize molecules. The molecules are represented by multiple x, y, and z values for each atom. What I would like to be able to do, is some math on each coordinate ...
0
votes
0answers
27 views
TransformGroup rotation about an Arbitrary Axis?
I want to rotate an TransformGroup around its own or an Arbitrary Axis.
TransformGroup tgcizgi; ...
if(i>=180)
i-=180;
else
i+=1;
t3d.setRotation(new AxisAngle4f(0.0f,0.0f, 1.0f, ...
0
votes
2answers
45 views
Rotating an Object
I know how to rotate the image but how would I rotate the acctual Objet? I can't use g2d.rotate(); because I have multiple things drawn with the paint() method and I only wan't one of the to rotate.
0
votes
0answers
35 views
Using Vector2d/AffineTransform to make Image/Object rotate
In the game that I am making I just made the gun to an seperate Image/Object now the problem is that I need to make it so that it is in the player hand.
I have made it so that the player always ...
1
vote
1answer
65 views
How to rotate a 2D object around itself?
I wrote a program that supports 3 actions : rotate ,translate and scaling .
The translation & scaling are working great , but I'm having some problems with the rotation.
At the beginning of ...
0
votes
1answer
42 views
Android app crash when rotating using AdMob
Hey i recently add a ads banner to my app
and after i added it all works fine... Until I rotate the phone and then the app crash
I added the following code to my original app code:
In my home ...
0
votes
1answer
35 views
rotating around point turns into spiral
I am engineering some program that simulates a steel wire rope for my bachelor thesis. But while trying to make a point (centre of a strand (midden) rotating about the centre of the ...
-1
votes
0answers
46 views
How to use different images in OpenGl Android? [closed]
I want to develop an App in Android for Car Models.
I am new to Android.
I want to show different views of a Car in 3D way. For that I have different images of a car.
I am using OpenGl for this.
But ...
0
votes
0answers
43 views
Java/Lwjgl 2D rotated rectangle collision response
I've been working on this project for quite some time, and I'm running into issues with the execution of the code, or perhaps the physics. I could really use some help, as this is for my high school ...
-1
votes
1answer
49 views
Rotating image so that it faces another image
I am creating a game and want the enemy to face the player as it follows the player. I have tried to use AffineTransform in this way:
at = new AffineTransform();
angle = Math.atan2(player.getY() - ...
0
votes
2answers
98 views
Java: rotating image so that it points at the mouse cursor
I want the player image to point towards the mouse cursor. I use this code to get the postion of the mouse cursor:
private int cursorX = MouseInfo.getPointerInfo().getLocation().x;
private int ...
1
vote
3answers
55 views
Rotation of a rect using a matrix
I want to rotate a rect, like on the provided sketch. I want to get out the new x-Pos and y-Pos of the north-western edge. I tried it with this calculation, but it does not work:
var x = //current ...
0
votes
1answer
134 views
Rotate object by 360 degrees with different Images in Android?
I am creating an Android App to rotate an image of Car by 360 degrees.
I want to rotate the object with different image files of same object (eg Car)
Here is the Example that I want to implement in ...
0
votes
1answer
64 views
Android Sensor Rotation Angle
I'm trying to detect the y-axis rotation angle (forward-backward tilt when holding in landscape) but I'm obviously doing thins wrong as the onSensorChanged event never gets triggered
@Override
public ...
1
vote
1answer
57 views
Quaternion object rotation
Since few days I'm trying to implement quaternion rotation for android OpenGL ES. I would like to get function with input quaternion(x,y,z,w). This function will be set rotation for GL10 object. GL10 ...
1
vote
1answer
53 views
Cannot get rotation working properly Java3D
public void changeAx(double value) {
translateAx.set(new Vector3f(0f, -0.325f, 0f));
trans.setTransform(translateAx);
rotation1.rotY(value);
rotation.mul(rotation1);
...
1
vote
1answer
115 views
Java 2D Rotation and Global Coordinates?
I am making a simple game where there's an object (a square with a rectangular barrel) that looks towards the mouse. The rotation part works pretty well, but I want the object to move when a button is ...
1
vote
2answers
49 views
Java Simple Rotation Around Point
I'm trying to use this method to rotate a point:
AffineTransform at = AffineTransform.getRotateInstance(Math.toRadians(90), 1, 2);
double[] pt = {0, 1};
at.transform(pt, 0, pt, 0, 1);
int x = ...
0
votes
0answers
52 views
LWJGL - Axes not rotating (Camera)
I'm learning OpenGL in Java and I have a problem with my camera.
The axes aren't rotating. No matter where I look at, I'm always going the same direction,
and the camera rotates around the same axes.
...
0
votes
2answers
116 views
Rotate BufferedImage Inside JPanel
I am trying to rotate a BufferedImage and display it inside a JLabel (which is inside a JPanel). The current result produces a white square rotated 10 degrees against a black background, but the ...
1
vote
2answers
38 views
In Itext, how do I flip the contents of a cell upside down?
I have a pdfptable with some pdfpcells and this sheet is printed off and brought around with each part. When the part is on the rack, the sheets are upside down. How can I write some text into a ...
1
vote
1answer
150 views
Rotate GIF images in java
I am trying to rotate a GIF image in java.
I read these interresting two trails about rotating images in java : trail 1 , trail 2.
All works fine, except that when I rotate my GIF image, there is no ...
0
votes
0answers
87 views
Java logging API filename rotation does not rotate
My logging.properties file:
handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
.level= INFO
java.util.logging.FileHandler.pattern = log/%g.log
...
0
votes
1answer
71 views
What is wrong with my rotation matrix?
//---------------------------------------------------------------------------
// arbitraryRotate - rotates v theta degrees around n
...
0
votes
0answers
85 views
Image tilt correction in java? OMR Reader Application
I need to know how to apply tilt correction to scanned images of OMR Sheets. Before reading the sheets for evaluation, the image needs to be aligned perfectly. How is this done in java? the image ...
0
votes
1answer
85 views
How to rotate an image in java about a specific point rather than the image centre? [duplicate]
I've so far been using the
Graphics2D.rotate(Math.toRadians(-1), newImage.getWidth() / 2, newImage.getHeight() / 2);
to rotate an image for an OMR Application. The result is a rotated but blurred ...
0
votes
0answers
79 views
How to rotate image at a specific point by a certain angle in java?
I want to rotate an image about a specific pixel position and not about the centre of the image. I want to rotate the image by certain degrees less than 90. I've made use of rotate function of the ...
2
votes
3answers
57 views
Saving the activity state when rotating the screen
I'm working on an android app, right now I limited the user to only use horizontal view for all activities.
I want to be able to give the user the option to rotate the screen, but when I do that, the ...
2
votes
1answer
73 views
LWJGL Rotating one object only
I am trying to rotate only one of two objects in my scene which I created in Java using
LWJGL.Now, when I try to rotate one object, it doesn't rotate around it's center but in large circles. After ...
0
votes
0answers
68 views
Java - LibGDX - Ease Rotation with Speed?
I have a rail. On this rail moves a cart. When the cart moves with default speed on this rail, the movement looks good. But when I increase the speed of the cart the movement looks not good. First the ...
0
votes
0answers
27 views
Rotating a collection of images as if it was one image
I have a spritesheet that is 320px by 160px and each (8 total) are 80px by 80px. Currently, I can display each individual cell independently onto my canvas.
My problem is that I would like to create ...
3
votes
1answer
108 views
Rotation for rolling 3d ball
I have a Ball in 3D space that has the following attributes:
location - a Vector3f representing where the ball is
rotation - a Vector3f representing the x, y, and z axis rotation angles
I want to ...
0
votes
1answer
49 views
Java AffinetransformOp filter() screws up my image
I am trying to rotate a 32 by 64 png image with 90 degree increments by using Affinetransform.rotate() and AffinetransformOp.filter. It works fine for 0, 90 and 180 degrees but at 270 degrees only ...
1
vote
1answer
42 views
Null Pointer Splay Tree
Im working on a right rotate method for a splay tree. I keep getting a null pointer exception when I try to run my program but im not sure why. This is my tree
5
/
2
/
1
this is ...
0
votes
0answers
66 views
Manually rotating a pixel array as opposed to using AffineTransform
Looked all over the net to find out how to rotate a 1-dimensional, NOT 2D, array containing the pixel information of a png image, in my case for instance, a png image of a missile turret.
So far I ...
0
votes
0answers
47 views
Android: Need to rotate to specific orientation using app
I need to rotate the screen to different orientations (Rotation_0, Rotation_90, Rotation_180 and Rotation_270) from the app.
I got to know that there is an API call which supports this functionality ...
1
vote
0answers
62 views
How to rotate a drawable on canvas in android
Lets say i place mutile drawables on a canvas at different places.
I am willing to rotate each image in a form (certain angle of degree).
So i need code for rotating drawable over canvas.
The thing is ...
0
votes
1answer
213 views
Java: Rotate Image around different points (noob)
I'm fairly new to programming and i'm trying to make a little game where you can control(rotate) a tank and different guns on top of the tank indepently. (I'm using slick)
during tank rotation the ...
1
vote
2answers
148 views
Android Surface class Surface.ROTATION_ cannot be resolved or is not a field
I'm trying to fix my camera app. When i hold the camera in landscape mode, it previews on the screen sideways.
I found this fix on stack : Android - Camera preview is sideways
In my CameraSurfaceView ...
0
votes
2answers
287 views
Programmatically rotate drawable or view
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/your_drawable"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
...
2
votes
2answers
133 views
Rotation of Transparent Image Over Transparent Panel
I've been working on a program that involves the rotation of a partially transparent image over a transparent form. The drawing of the image originally worked fine, I also set my custom panel's ...
0
votes
0answers
138 views
How to get vertices of rotated Mesh in Libgdx without render?
First I would like to know if it's possible to rotate a Mesh without drawing it.
If it is possible then how could I get the new vertices of the rotated mesh?
I need this to verify if a certain Mesh ...

