Tagged Questions
0
votes
0answers
14 views
AABB and rotating vectors
the following code is my vector rotation and axis aligned bounding box code, im drawing lines to form rectangles up to the depth of each aabb so i can actually see the bounding shape collide, when i ...
0
votes
1answer
24 views
openGL move forward with rotation works for 0 degrees, backwards for 90 degrees
I am trying to move my world in reference to a character. It works if the degree is zero (the player goes forward) but messes up everywhere else. When it is 90 degrees, the player goes backwards ...
0
votes
0answers
21 views
Type of rotation used in Easy Acupuncture 3D -LITE Android app
I just want the guidance to understand the rotation used by android app Easy Acupuncture 3D -LITE , here's the link to google play
This app is developed in unity, i want to know the type of ...
0
votes
0answers
37 views
Making a Face of a 3D Mesh Face “Up” in Blender (Python)
I have been struggling with this for a couple weeks now. How can I get a selected face of an object to point "up"? Is there a built in function to make this simple? Will I have to take more math ...
1
vote
1answer
89 views
Rotate a quaternion
I want to code a first person camera with its rotation stored in a quaternion. Unfortunately there is something wrong with the rotation.
The following function is responsible to rotate the camera. ...
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 ...
-1
votes
0answers
8 views
How to tell which cardinal axis is being dragged [closed]
In this specific situation, I have a cube, and all three cardinal planes, with their collision points with the mouse.
When a user drags the mouse across the cube (To rotate the cube, so, usually in a ...
0
votes
0answers
10 views
How to 3D-rotate image in Photoshop? [migrated]
I have a site screen shot(like this - http://d.pr/i/KxHN), and i want to rotate it to "perspective view" like this - http://bit.ly/14oIzhg.
How i can do that? Google hinted nothing about this ...
1
vote
1answer
61 views
Computing quaternions/rotations from 2 points in 3D space
I have a kinect application, which sends me the position of the joints as points in 3D space.
The order of the joints is shown in the picture below.
Now i want to move them in another application ...
-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 ...
1
vote
2answers
41 views
Can i switch X Y Z in a quaternion?
i have a coordinate system where the Y axis is UP. I need to convert it to a coordinate system where Z is UP. I have the rotations stored in quaternions, so my question is : if i have a quaternion ...
0
votes
0answers
121 views
Delphi Firemonkey 3D: How can I change the origin from which a 3D object rotates?
The cube rotates when the user holds down the LMB and moves the mouse.I am using a dummy as a kind of "anchor", so that the camera stays in the same place, but the object rotates, so all sides can be ...
0
votes
2answers
60 views
Xna 4.0 3D Cameras & Models, rotation does not work right
Hi I am getting a headache with cameras and models rotation. the camera seems to be working but the rotation on the model just seems to be messed up. What i want is the model to turn a little bit in ...
0
votes
0answers
43 views
kinematic model, hierarchical rotations
i want to move a character with rotation matrices given from a kinect. In my application i use COLLADA, where the Z axis is up, and the kinect uses something like this
:
With absolute orientation ...
1
vote
1answer
375 views
OpenGL 3D camera gluLookAt
I'm trying to set up a 3D camera with the gluLookAt method. So I have got a 10x10x10 cube and now i want to move the camera inside that cube. I have something like that:
gluLookAt( ...
0
votes
1answer
71 views
What is wrong with my rotation matrix?
//---------------------------------------------------------------------------
// arbitraryRotate - rotates v theta degrees around n
...
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 ...
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
93 views
Matlab rotate3D and buttondownfcn incompatibility
Hi everyone and thanks in advance for all your help.
I'm currently working on a UI in matlab that includes 4 differents axes to show various info. Basicly, I have MRI data (so 3D data) that I want ...
1
vote
1answer
140 views
How to make a cube continiously rotate in y axis in 3d keeping x and z axis constant in wpf?
How to make a 3d cube continiously rotate in y axis keeping x and z axis constant in wpf??
0
votes
1answer
175 views
Rotating css 3d object doesn't work right
First, look at this jsfiddle: http://jsfiddle.net/markasoftware/CJDeD/6/
<div id="container">
<figure id="box">
<div id="back" ...
0
votes
0answers
105 views
Intersection contour of 3D shape and plane
Image of problem: Image here.
How is it possible to find (formula) A, B, C, D position relative point of intersection violet line and the plane (relative point of intersction AC and BD (it point ...
0
votes
1answer
158 views
Computing Vector from Quaternion works, computing Quaternion from Vector does not
So I am using a quaternion to create a segment of two points in 3D space, and trying to recompute a similar quaternion later on (one representing the same vector through space; I am aware that the ...
0
votes
1answer
147 views
Dome rotation on arbitrary axis?
Imagine a dome with its centre in the +z direction. What I want to do is to move that dome's centre to a different axis (e.g. 20 degrees x axis, 20 degrees y axis, 20 degrees z axis). How can I do ...
3
votes
1answer
99 views
CSS3 transform: rotateY a div to counter the rotateY of the parent
Can I transform: rotateY a div to counter the transform: rotateY of his parent ?
For example: if I have a parent div with rotateY(-45deg), all his childrens will be -45deg. Why can't I add ...
0
votes
2answers
349 views
Rotating a Vector in 3D Space
I am making an android project in opengl es that uses accelerometer to calculate change in specific axes and my aim is to rotate my spacecraft-like object's movement vector. The problem is that i ...
4
votes
1answer
217 views
Quaternion and axis of rotation
This question has been answered. Below is most of the code that you need to make it work! Hope it helps others.
Thanks to @Aki Suihkonen, @David Hammen, and @MBo.
Both Angle functions give the right ...
3
votes
2answers
128 views
How to place a point in 3D so that it creates a certain angle?
I have a small question about 3D.
What follows is an example of my problem.
I have two points:
A: 12 4 5
B: 6 8 -10
I have another point:
C: 5 6 7
I need to transform(?) point C so that the angle ...
0
votes
1answer
263 views
Android simple animation - 90 degree rotation around X axis
I'm rotating a view 90 degrees around the X axis. (I.e. it looks like the view is falling forward out of the screen towards the user).
I extend Animation, and inside applyTransformation(), I do
...
0
votes
0answers
134 views
User rotatable 3D cube with flash pro cs5
so, I have built a 3D cube in flash cs5 with buttons on each face to link to other content, however, I would like to know how to make it so that when the user holds a click they can freely rotate it ...
0
votes
1answer
67 views
how to represent rotation around 3D axis as a rotation around an fixed axis and what is the angle of the rotation
I want to know where is the equation for 3D rotation come from?(http://en.wikipedia.org/wiki/Rotation_matrix). and if I want to rotate a point first around x axis for thetax degree, then rotate around ...
1
vote
1answer
692 views
Rotate camera around point-of-interest in opengl
I want to rotate my "camera" around a point of interest. Currently the camera only rotates around the origin.
A lot of tutorials suggest to use following scheme:
translate(-P)
rotate
translate(P)
...
0
votes
1answer
100 views
3D CSS transform not rotating about the correct axis
I'm attempting to build a four page website on the faces of a cube. I've gotten pretty close to what I was after here, but the 3D rotations sometimes don't behave as expected.
When a nav element is ...
2
votes
2answers
292 views
delphi cube rotation
I want to rotate a cube on my screen around its axis.
I found this example in javascript which uses the 3D rotation matrix. I tried to make something similar in my application but the cube doesn't ...
0
votes
0answers
326 views
Android 3D Image rotation [closed]
I am beginner with android and want to develop an image rotator app...can somebody help out plzzz...
I want the image to rotate on gesture listener in such a way as given in the link below:
...
0
votes
2answers
161 views
Hide a face of a 3D shape behind another,Android canvas?
Suppose that I have to draw two faces of a 3D shape in a canvas.In OpenGL,we use clockwise and non clockwise ordering of vertices to detect what face is front face and what is behind face,but I can ...
0
votes
0answers
255 views
3D text rotation with JavaScript
Do you know any libraries which able to create text transformations like the menu on this page? http://www.yodabaz.com/
I tried transformations with CSS but it didn't work well.
Are there any useful ...
0
votes
1answer
137 views
TextBlock gets blured after a 180 degrees PlaneProjection animation
I am doing a 3D rotation in a grid using a PlaneProjection:
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="RotationY"
Storyboard.TargetName="projection"
...
1
vote
1answer
66 views
how to extrapolate quaternions?
Suppose I have an object whose orientation are given by quaternion q1, q2, q3, ...qn at time isntances 1,2,3,...n on server side.
I want to predict the orientation of object on client side, so that I ...
1
vote
2answers
211 views
Rotate 3D object with Direction and Axis
I am working on showing a 3D model (IFC) in Java3D. I need to rotate the object with 2 vectors, a direction vector and a axis vector that are given by the IFC model.
But I can't figure out how to get ...
2
votes
1answer
214 views
Calculating point relative to another point in 3D space
This is going to be a rather complicated explanation so bear with me. In 3D space, a player has 2 rotation values for looking around them, the rotation about the x and y axis. Given a view ...
1
vote
0answers
86 views
Open a obj file in android
I am a PHP programmer and trying phonegap + HTML and android
I had a requirement from client that a android application.
In which they need to rotate a obj file ( static ) as in 3d applications like ...
2
votes
1answer
502 views
Is this rotation matrix (angle about vector) limited to certain orientations?
From a couple references (i.e., http://en.wikipedia.org/wiki/Rotation_matrix "Rotation matrix from axis and angle", and exercise 5.15 in "Computer Graphics - Principles and Practice" by Foley et al, ...
-1
votes
1answer
135 views
How to rotate he camera - 3D camera rotation
I am wondering if there is a variable or way i could use to rotate the camera in my game. I can move it along xyz axis's but i cannot figure out how to rotate it! :O
Here are the variables:
...
1
vote
1answer
594 views
How can I recreate this 3d histogram?
I am talking about this picture:
Questions:
This is R, not Matlab right? Below the page it says it was made with R....
How can I do this? I mean, how can I create such a 3d scatterplot with ...
1
vote
0answers
93 views
Cube rotation about its edge rather than axis
I am quite new to using Visual Studio and WPF. I have always used Arduino and Processing together but I am now trying to replace Processing with WPF, since it looks more professional. The problem i ...
2
votes
1answer
487 views
Issues with rotating rubik cube faces using opengl in C++
I have to design functional rubik cube as part of my homework. I am not using openGL directly, but a framework that was provided. ( All functions that do not belong to openGL and do not have their ...
1
vote
1answer
574 views
3D object rotation around its center in Processing
I'm trying to rotate three-faced object around its center via X axis.
I'm building single face's center at 0,0. And I can rotate it around it's center, but when I try to rotate "whole" object, it ...
0
votes
1answer
169 views
How to move and rotate group of polygons in xna?
In openGL we could create some polygons and connect them as a group by the function
'pushMatrix()' and then we could rotate them and move them as one object..
Is there a way to do it with xna? if i ...
3
votes
2answers
183 views
How do I calculate the position of a point in HTML5 canvas after rotation?
After seeing this code, I can't figure out where does the formula x * sina + y * cosa comes from.
After each interval a point rotates around an axes by an a angle.
I need the x and z position of the ...



