All Questions
Tagged with interpolation javascript
6 questions
-1
votes
2
answers
227
views
How to interpolate angular data properly
I have been trying to interpolate raw angular data in degree (for a flow map grid) but any attempt fails because there is always two path, and I can't figure out how to interpolate on the shorter one ...
2
votes
1
answer
1k
views
Multiplayer game server sync
I am building a 2d multiplayer game with no physics and my own authoritative server. Already have all players getting synced each with other but their movement isn't so smooth yet.
Here is the ...
7
votes
4
answers
4k
views
Interpolation using cubic Bezier curves
I am trying to create an interpolate function for an animation library to achieve a tweening effect between frames.
I want this to work with Bezier curves. I have created a jsFiddle (here) of my ...
5
votes
1
answer
1k
views
Client interpolation for 100% serverside game
I'm developing an online browser MMO 2d war game.
And I'm having some issues with the interpolation. The server sends updated positions to the clients every 90 ms.
I've managed to make it smooth, ...
7
votes
2
answers
3k
views
UV texture mapping with perspective correct interpolation
I am working on a software rasterizer for educational purposes and I am having issues with the texturing.
The problem is, only one face of the cube gets correctly textured. The rest are stretched ...
10
votes
1
answer
6k
views
Depth interpolation for z-buffer, with scanline
I have to write my own software 3d rasterizer, and so far I am able to project my 3d model made of triangles into 2d space:
I rotate, translate and project my points to get a 2d space representation ...