The vectormath tag has no wiki summary.
1
vote
1answer
31 views
Billboard using the Geometry shader
I am trying to render billboards using a geometry-shader which takes points as input and outputs a triangle stream (using DirectX11). However the current result is not what I expect it to be.
For ...
-1
votes
1answer
188 views
Finding Shortest Distance Between Two Parallel Lines, With Arbitrary Point [closed]
I need to write a reliable method to retrieve the answer to the following scenario...
Given a line segment AB and an arbitrary point C, how would I find the closest point to A on a line parallel to ...
0
votes
0answers
35 views
Calculating rotation angle and translation vector
I have problems with a 3d object rotation and translation. I have a truck and a box. When box is picked up I calculate translation vector and rotation value once and then use it in draw and update ...
2
votes
1answer
64 views
Finding the downhill direction vector when given a plane defined by a normal and a point
So, I have a plane defined by a point in space P, and a normal N. I want to find the normal vector that points directly "down hill" on the plane. How would I go about figuring this out?
1
vote
2answers
118 views
understanding and implementing Boids
So I'm working on porting Boids to Brightscript, based on the pseudocode here:
http://www.kfish.org/boids/pseudocode.html
I'm trying to understand the data structures involved, for example is ...
0
votes
1answer
512 views
XNA vector math movement
I am making a top down 2D rpg game in c# xna for my game design class in college. I am attempting to create a simple AI that moves the enemy towards the player. currently my code is the following
...
0
votes
1answer
89 views
Simplest way to find any vector with a different direction
What is the simplest way to take an input vector, given as (x,y,z), and find some new vector with a different direction than it? Any direction will do, it just has to be a different direction than the ...
1
vote
1answer
62 views
Handling LookVector For Flying Camera
I'm trying to setup a free flying camera in XNA. I'm using Lua connected mostly to the CLR to control the camera in this instance.
I've tried the following so far:
dkeys={}
...
3
votes
4answers
121 views
One class for math vectors of arbitrary dimension
I want to write a class for mathematical Vectors (holding real numbers). I figured that Vector operations are pretty much the same regardeless of the dimension of the vector, so instead of writing ...
0
votes
1answer
1k views
How to calculate vec4 cross product with glm?
Why this throws an compilation error: no matching function for call to ‘cross(glm::vec4&, glm::vec4&)’
glm::vec4 a;
glm::vec4 b;
glm::vec4 c = glm::cross(a, b);
but it works fine for vec3?
0
votes
1answer
206 views
XNA Vector2 path contained inside rectangle
Hello I am new to XNA and trying to develop a game prototype where the character moves from one location to another using mouse clicks.
I have a Rectangle representing the current position. I get the ...
1
vote
1answer
109 views
Selecting the relevant plane of a bounding box prior to ray plane intersection
I am tracking objects for which I need to test if they are located inside or outside a cube / bounding box. If they are outside, I do a ray-plane intersection to calculate a point on one of the planes ...
1
vote
1answer
319 views
Closest point on circle in 3d. What's missing?
I hope I manage to explain this clearly. I am trying to calculate the closest point on a circle in 3D. I found the following solution:
...
0
votes
2answers
128 views
AMD Open64: Optimized math functions
Does Open64 has something equivalent to Intel Short Vector Math Library Operations.
Thank you.
6
votes
4answers
7k views
How to do matrix and vector math in Objective-C?
I need to do matrix and vector math in Objective-C. Are there tutorials which show how this works? Are there math libraries that come in handy?
1
vote
2answers
222 views
Circle to tangent mapping
Assume you're given a circle with the line AB containing its center O, such that A and B are on the circle (OA=OB=radius). A tangent t is drawn on the point A, and
I should calculate the mapping of ...
3
votes
4answers
1k views
SIMD Sony Vector Math Library in OS X with C++
I'm currently writing a very simple game engine for an assignment and to make the code a lot nicer I've decided to use a vector math library. One of my lecturers showed me the Sony Vector Math library ...
3
votes
3answers
751 views
Intuitive 3D Math Resources
I have been trying to find some well presented and explained Vector and Quaternion resources recently to brush up on my 3D skills, and have been having some trouble.
Most of the resources I have ...
3
votes
3answers
338 views
Math programming help for a gimble-based painting machine
I'm an artist involved with building various sorts of computer controlled machines. I've started prototyping a gimble-based XY painting machine and have realized that the maths needed are out of my ...
1
vote
3answers
234 views
Non-axis aligned scaling
Finding a good way to do this has stumped me for a while now: assume I have a selection box with a set of points in it. By dragging the corners you can scale the (distance between) points in the box. ...