Tagged Questions
0
votes
1answer
229 views
How to get xy coordinates along a given path
Say i have two points (x,y), (0,0) and (10,10). Now i wan´t to get coordinates along the line by stepping through values of x and y. I thought i solved it with the following functions:
fy = startY ...
2
votes
1answer
324 views
How to linearly transform vertices for large coordinate systems
Alright, so I'm working on a space game and well, I want it to have a lot of space! So I need a large coordinate system and for my rendering pipeline to not suffer from "vertex jittering" due to ...
1
vote
3answers
126 views
Finding which side one point is from another point
I have a simple question I think, if point a is to the right of another point I a dirx to be 1, otherwise -1. Likewise for a diry var, if it's above the other point I want it to be -1 otherwise 1. ...