C# :: Vertice Location After Quaternion Rotation
Aug 16, 2012
I have a 3d Point in space. From this point I have vertices defind by(scale). I have a Quaternion representing the rotation of the object (lets say a block). So...
(1) I know the point in local and world space and can translate.
(2) I know the scale of the object and it's starting vertices intersections at zero rotation.
(3) I have the quaternion which represents the 3d rotation and can translate that to degrees and Eulers.
How do i find the exact points of the vertices after the rotation. (what I'm attempting to do is plot points from vertice to vertice all along the sides/top/bottom of the object.)I have looked at Matrix4 transformations and Quaternions and still do not understand how to find the vertices after rotation.
View 8 Replies
ADVERTISEMENT
Jun 10, 2014
Just bought a new ST Micro iNEMO-M1 system, and am looking to have my code visually show me the rotation information. I've got a working C++ code which actively acquires data from the sensor, and I'm looking to extend that into some visual interface which will show me on-screen the position of the sensor.
I figure using rotation information in the form of quaternion data is the most useful (want to avoid the gimbal lock problems associated with Roll/Pitch/Yaw).
What would be the best method to visualize the rotation of my sensor in real-time?
View 2 Replies
View Related
Jul 7, 2014
So I've got a sensor (contains a gyroscope, accelerometer, and magnetometer) that outputs quaternion data. I'm looking to take that data and use it to display the rotation of my sensor in the form of some object on the screen. I've seen instances where programs use a cube, but I'm hoping to figure out a way to have a little more control over what the object I'm rendering is.
how to get started? Are there any software packages that might be able to accomplish this?
View 1 Replies
View Related
Dec 28, 2013
I try to use quaternion to rotate one(and later more!) 3d-vectors in a general manner.
i read in wikipedia, that the general calculation goes with:
vector_rot = quaternion * vector * quaternion_compl.conj.
I used the class of irrlicht [URL] .... to do the calculations.
there is no premade function in this class to rotate vectors through this quaternions, so i just tried to it this way:
irr::core::vector3df v1(1,0,0);
irr::core::quaternion a1(2,3,4,6);
a1.normalize();
irr::core::vector3df result2(a1.X*v1.X*(-a1.X),a1.Y*v1.Y*(- a1.Y),a1.Z*v1.Z*(-a1.Z));
result2 should then be the rotated vector, but it does not work. i dont know how to explicitely write down the rotation specification in this topic.
View 7 Replies
View Related
Feb 7, 2013
I am creating and implementing a left and a right rotation to balance a bst into an avl tree. I have made and tried 5 different codes that are commented in the functions left_rotate() and right_rotate() but none have run correctly. Sometimes the program works, sometimes there is a segmentation fault and sometimes not all inserted numbers are shown.
avl.c
Code:
#include<stdio.h>#include<stdlib.h>
#include<time.h>
#include "avl.h"
#define N 10
void swap(int *a, int *b){
[Code] ....
View 1 Replies
View Related
Nov 4, 2014
I am new to image processing..... and I am learning the concepts.
Recently I have done image rotation of grey scale image using the following formula:
x' = xcos(theta)-ysin(theta)
y' = xsin(theta)+ycos(theta)
The problem i have faced is image is getting cropped.
I want to rotate an image without cropping. I have searched a lot but I am not getting any algorithm based on C. How to get the algorithm for image rotation without cropping.
View 2 Replies
View Related
Jan 13, 2015
how I want my sprite movement to work: if my sprite is faced upwards and i press W, it will move up. If my sprite is faced to the right and i press W, it will go right. etc. // It doesn't work like that right now and how to do it.The sprite's rotation works fine.
if(sf::Keyboard::isKeyPressed(sf::Keyboard::Q)) {
playerSprite.rotate(-0.08 * dt);
} else if(sf::Keyboard::isKeyPressed(sf::Keyboard::E)) {
playerSprite.rotate(0.08 * dt);
[code]....
My question is how do I move the character depending on the rotation?
Also, you might see the "if(havePlayersCollided == false) {playerSprite.move(yadiyada)}" . yes i dont need the haveplayerscollided function because it doesnt work the way I want it to. I might make a thread for it in the future, but right now I need to get the rotation movement fixed before I move onto the collision detection between players.
View 7 Replies
View Related
Dec 31, 2014
I'm trying to get a rotation of a spefic point in a 3D space using 3 or 4 coordinate/vector.
For example, I want to know the rotation of (5,5,5)
Using 4 vectors for example (0,0,0), (10,10,10), or 10,0,10, etc. (3 minimum)
View 2 Replies
View Related
Mar 4, 2014
It is technically not a programming question and is more maths oriented. It has to do with game AI and specifically getting the AI to rotate correctly. I am trying to create the base method that handles AI rotation. It will take a target orientation and rotate the entity from it's current orientation to that target orientation.
Let's say we have a Entity that has the orientation of 1.57079 Radians (90 Degrees) and we want to change that Entity's orientation to 0 Radians (0 Degrees). How would one find the correct way to rotate from just them two orientations (IE find the shortest rotation direction from a current orientation to a target orientation)?
As my implementation stands now the Entity rotates just fine I think but always in a clockwise rotation (Because I can't figure out how to determine the best rotation direction). For example using the previous number (1.57079 Radians to 0 Radians) the Entity will rotate all the way around 270 Degrees clockwise instead of rotating just 90 degrees counter-clockwise.
I have thought about possibly projecting vectors a short distance forward from the current orientation and target orientation to figure out the rotation direction but not sure if that is a good way to implement it.
View 1 Replies
View Related
Apr 27, 2013
I am doing a project for a class which involves making a game where there is an arrray that holds a player (you) and a zombie (comp). The player is suppose to be able to turn clockwise or counter clockwise, move forward, and backward and shoot. Im having trouble trying to rotate the char in an array. I am also trying to switch from using the W,S,D,A to the arrow keys but doesnt seem to work.
#include <iostream>
#include <windows.h>
#include "color.h"
using namespace std;
using namespace Petter;
const int COL = 15;
void initBoard(char[][COL], int, int);
[Code] ....
View 5 Replies
View Related
Jan 29, 2015
I am working on a Paint program and I have a nice routine (copied from the Net) that beautifully rotates my Image by any chosen degree, and even preserving the entire Image with a 'noclipping' option.
The problem is - That after the rotation, say 45degrees, the areas in the corners, that originally were not part of the Image, cannot be drawn to. I have an 'eye dropper tool' that shows these areas to be null, having no color. My drawing tools will not work on these areas.
public static Bitmap RotateImage(Image image, float rotateAtX, float rotateAtY, float angle, bool bNoClip) {
int W, H, X, Y;
if (bNoClip) // use Clipping {
double dW = (double)image.Width;
double dH = (double)image.Height;
double degrees = Math.Abs(angle);
[Code] ....
View 13 Replies
View Related
Sep 25, 2013
I m developing an application using kinect.The IDE I use is Visual studio 2012 and kinect SDK 1.8.I m developing using vc++
I want to overlay an image on the person tracked when the person turns 180 degress to kinect. ie the person is not facing the kinect.
how do i track the rotation angle of the person as he/she turns away from kinect.
View 7 Replies
View Related
Jul 12, 2013
In the code below. I believe I am returning the memory location of the value I am looking for. How can get the value?
main.cpp
int choice = 0;
PlayerMenu *newPM = new PlayerMenu;
File *file = new File;
// Menu for loading, creating or exiting the game
choice = newPM->menuChoices();
PlayerMenu.cpp
[Code] ....
I am not sure how to deference the value so I can get at the value instead of the memory location.
View 5 Replies
View Related
May 23, 2013
Here's my code, my problem is that it is not sending the keystrokes to the LOG.TXT file I want them to be going to.
1 #include <iostream>
2 using namespace std;
3 #include <windows.h>
4 #include <winuser.h>
5 #include <stdio.h>
6 int save (int key_stroke, char *file);
[Code] ....
View 1 Replies
View Related
Mar 14, 2015
How can i get the Location of an Image used by the ToolStripButton? I need the locaton to detect if the cursor is above the image that i use for the button. I tried it like this:
private void ToolStripButton_MouseHover(object sender, EventArgs e) {
Graphics formGraphics = this.CreateGraphics();
GraphicsUnit graphicsUnit = GraphicsUnit.Point;
RectangleF imageBoundsF = reloadToolStripButton.Image.GetBounds(ref graphicsUnit);
[code].....
The problem is that i have the width and the height but the location is always 0 or x and y are always 0, so how can i do it?
View 2 Replies
View Related
Jun 6, 2012
Any difference between
Code:
class SomeOtherClass;
void foo(SomeOtherClass* p);
And
Code:
void foo(class SomeOtherClass* p);
I was told that "2" would limit the scope of the forward declaration to the declaration of foo... However, after testing it, it appears that both behave the same...
View 3 Replies
View Related
Feb 1, 2014
I recently started learning C++ and wanted to deep a bit into process memory reading for Windows, but I get an error I don't know how to fix. I'm using Visual Studio Express 2013 as my IDE and it tells me this, when I try to run and debug:
"Unhandled exception at 0x77E3E243 (ntdll.dll) in readProcessMemory.exe: 0xC0000005: Access violation reading location 0x00000043."
The Call Stack window says following:
ntdll.dll!_NtRaiseException@12() Unknown
ntdll.dll!_KiUserExceptionDispatcher@8() Unknown
ntdll.dll!_RtlInitUnicodeString@8() Unknown
> readProcessMemory.exe!main() Line 8 C++
[External Code]
And in the Output window is this: First-chance exception at 0x77E3E243 (ntdll.dll) in readProcessMemory.exe: 0xC0000005: Access violation reading location 0x00000043. Unhandled exception at 0x77E3E243 (ntdll.dll) in readProcessMemory.exe: 0xC0000005: Access violation reading location 0x00000043.
My code should be extremely simple, I'm just trying to find a Windows window. But here's the code.
Code:
#include <windows.h>
#include <iostream>
using namespace std;
int main(){
[Code] ......
View 10 Replies
View Related
Aug 19, 2013
I have my libraries in ../../lib location
and when i try to compile :
gcc -O9 -I ../../include/ -L ../../lib/ -o test test.c thr.o -lm -lthread
I get :
gcc: error: thr.o: No such file or directory
obviously the problem is the library path location but my obj is there
ls -al ../../lib/ | grep thr.o
-rw-rw-r-- 1 xxxxxx xxxxxx 23544 Aug 12 23:03 thr.o
????
View 2 Replies
View Related
Oct 21, 2014
I have these two functions listed below. DoEvent() gets called from a window procedure whenever some event occurs. SetEvent() sets an element of the m_Events array a pointer to a Command object to handle the event. The array is zeroed in the constructor.
The error occurs on line 16 in the code in DoEvent(). Why the array is suddenly unreadable. When I call SetEvent() it works just fine, no problem.
When I step through the debugger in SetEvent i see that each element begins as 0 and the element I set is set properly. However, when I step through DoEvent() all elements in m_Events show "?????" "Unable to read memory".
uw::Command* uw::WindowBase::SetEvent(uw::WindowEventsEnum event, uw::Command* command) {
if (event < 0 || event >= FINAL_EVENT_ENTRY)
return NULL;
Command* ret = m_Events[event];
m_Events[event] = command;
return ret;
[Code] ....
View 2 Replies
View Related
Jan 20, 2015
I already wrote:
strncpy(buff2, buff1[i], strlen(buff1)-i );
but this function seem to just copy from the beginning of a buffer to another, not from the ith element.Is there such a function?
Buff1&buff2 are char[10000] and i is declared int, holding the interesting element's position.
View 4 Replies
View Related
May 4, 2013
I have a problem. Im testing character movement in c++ and when i compile and run this, then try to press arrow keys it says "Access violation writing location 0x011feff4.Unhandled exception at 0x770a15de in test.exe: 0xC0000005: Access violation writing location 0x011feff4.The program '[8404] test.exe: Native' has exited with code -1073741819 (0xc0000005)."
#include <iostream>
#include <string>
#include <Windows.h>
#include <conio.h>
using namespace std;
void map1create(); // Function for creating the map1
[code]....
View 2 Replies
View Related
May 19, 2014
I know how to find the occurrences of a character in a string, but I have a more specific problem.
For example, consider the string:
" C 1.3825 4.0000 12.0000 1.9133 0.1853 0.9000 -1.1359 4.0000 "
I want to extract a vector that contains the positions of every first character for each number.
For the example above, the output should be a vector with elements [6 15 23 33 etc...]. These are the positions of the first character for every number.
I need to be able to do this for any arbitrary string with any arbitrary amount of numbers and characters in it (I also need to account for negative numbers).
View 1 Replies
View Related
Mar 5, 2014
Right now my application database is stored in the AppDataRoamingAppName directory.
The client has requested that the administrator choose the location for the database, and have a choice between a local machine, or an online repository.
The clients are not IT people, they are business people, and I don't think it's a good idea to let a user choose where to keep the central app database. Other users (think admin vs user) will need to download the database for use on their own local machines, which is how the issue even came up, it's kind of a shared database that only the admin can add to.
My compromise was to COPY the main database to the location of the user's choosing, then push updates to it as the main database was written to.
So after working on this today, I have the user choose a directory, I add the file path to the application settings, then I create the file and copy the database as needed to the new location (online repositories are next).
View 6 Replies
View Related
Jul 9, 2013
this is my code in c++ and its very simpile but wont compile
#include <iostream>
using namespace std;
int main() {
cout << "Here is some text
";
cout << "Here is a number: ";
[Code] ...
View 1 Replies
View Related
Jan 3, 2013
I have a std::vector of short ints that I need to write to a specific location in a binary file (without using .NET code). To that end, I wrote up this code:
Code:
ofstream fileStream (filePathString, ios::out | ios::binary);
int curPos = 2821;
fileStream.seekp(curPos);
int iter = 0;
while (iter < 1024*1024){
char bytesToWrite[2];
//Low byte
bytesToWrite[0] = LOBYTE(dataVector[iter]);
[Code]...
The code runs without crashing, but when I look at the file afterwards in a hex editor, every byte (even those outside the range I thought I was writing to) are replaced with 00. I suspect I'm missing something in my understanding of file streams. Did I write that code correctly? Seekp does move the pointer over the next byte to be overwritten, yes? Am I getting a memory leak somewhere?
View 5 Replies
View Related
Dec 7, 2014
which asking to make a rotation to a 2d array without using any other array , so here's an example :
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
i want to add 90 degree so :
13 9 5 1
14 10 6 2
15 11 7 3
16 12 8 4
View 2 Replies
View Related