Search:

Type: Posts; User: Gadersd

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,837

    Online winsock server

    How do I create an online winsock server? The tutorials I found only had info on how to make a lan server. What IP address do I use for my server? I cannot do 192.168.1.2 because it is my lan IP...
  2. Replies
    2
    Views
    1,065

    If you don't have an answer don't say anything at...

    If you don't have an answer don't say anything at all.
  3. Replies
    2
    Views
    1,065

    screen goes black when using textures

    My game was working fine until I added texturing to my 2d picture on my 3d game. When the texture loads successfuly the screen goes black. Here is my code:


    /*This source code copyrighted by Lazy...
  4. Replies
    6
    Views
    2,987

    Here is my mult function. It does not normalize...

    Here is my mult function. It does not normalize any quaternions.


    void mult(float* C,float A[], float B[])
    {
    C[0] = A[3]*B[0] + A[0]*B[3] + A[1]*B[2] - A[2]*B[1];
    C[1] = A[3]*B[1] +...
  5. Replies
    6
    Views
    2,987

    quaternion rotation issues

    Hi. I am using quaternions to do vector rotation. For some reason it is not working properly. When I try to rotate the vector 0,0,1 90 degrees along the x axis with this quaternion-0.70710678, 0, 0,...
  6. Replies
    0
    Views
    1,430

    C++ quaternion camera help

    I have been working on a simple quaternion camera, but I cannot seem to get it to work. When I call my rotation function nothing happens. I got this code from quaternion camera examples. Here is my...
Results 1 to 6 of 6