CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: gaar321

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    786

    Re: Duplicate Vertices?

    Thanks a lot :D!
  2. Replies
    6
    Views
    786

    Re: Duplicate Vertices?

    The x,y,z coordinates are stored in a vector that uses XMFLOAT3 and i want suggestions on how to detected duplicate data so the double coordinate can be discarded and added to an index array as a...
  3. Replies
    6
    Views
    786

    Re: Duplicate Vertices?

    ermm well I am parsing an obj file format and I want to know how to implement a hash table to to remove double vertices (x,y,z points) in memory
  4. Replies
    6
    Views
    786

    Duplicate Vertices?

    Hello

    can you please help direct me to some documentation on how to delete duplicate vertices and generate an index using a hashtable
  5. Replies
    2
    Views
    356

    Expressing y-y1=m(x-x1) programmatically

    How would you express the common line equation programmatically. for example say if you have a straight line across the screen is there a way to work out the gradient. ect..
  6. Replies
    15
    Views
    1,318

    Re: Algoritme for doubling a line

    Didn't open the link :L
  7. Replies
    15
    Views
    1,318

    Re: Algoritme for doubling a line

    Why not load the bitmap then get its area and then get the amount of pixels the bitmap covers. set some offsets then get some x and y coordinates.
  8. Replies
    9
    Views
    288

    Re: Error, can't run

    Include WinSDK in the VC++ directories if you have it installed
  9. Replies
    15
    Views
    1,318

    Re: Algoritme for doubling a line

    Lets say you have defined your first line with x and y coordinates as its 2D

    possibilty to dublicate the line

    pseudo code



    vector<2DARRAY> iterator;
    vector<2DARRAY> vertices;
  10. Replies
    13
    Views
    4,521

    Re: Reading a text file into a vector

    Paul this user may want to know the internal workings of how to actually find a middle value in the vector not just to know that a function does it for you, in this case std::find, also the for loop...
  11. Re: PE import table: DLL(name), Functions (name & address)

    To get dll functions names and base address to be processed through you exe why not use



    HMODULE h;
    int funcaddress = 0;
    h = GetModule("blah.dll");

    funcaddress =...
  12. Replies
    13
    Views
    4,521

    Re: Reading a text file into a vector

    In the delete function:



    cin >> strFName >> strLName;
    vecNames.pop_back(); //Take that name off of the vector

    oFile.open(strFile.c_str()); //Open the output file
  13. Replies
    7
    Views
    611

    Re: Why is my triangle not displaying??

    Yeah i have (N)




    bool ShaderClass::ShaderInit(ID3D10Device* Device,HWND hWnd)
    {
    bool result = true;
    result = InitializeShader(Device,hWnd,"TriangleShader.fx");
    if(!result)
  14. Replies
    7
    Views
    611

    Re: Why is my triangle not displaying??

    I will try and make this as clear as possible then

    When I run the project the background colour appears vertices are loaded into the buffers without a problem, the shaders load correctly as well...
  15. Replies
    7
    Views
    611

    Re: Why is my triangle not displaying??

    There is the source code
  16. Replies
    7
    Views
    611

    Why is my triangle not displaying??

    Can anyone figure out why my triangle is not displaying please? Thanks in advance

    Here is the link as the code is to large to paste

    http://www.mediafire.com/download.php?ospidnejfbt7b9i
  17. Replies
    5
    Views
    803

    Re: Hooking class functions?

    Replicating a system such as fraps, so I basically want to know how to hook the directx class functions
  18. Replies
    5
    Views
    803

    Re: Hooking class functions?

    My intentions are not for bad if thats what you are thinking?
  19. Replies
    5
    Views
    803

    Hooking class functions?

    How would you go about hooking class functions?
  20. Replies
    6
    Views
    1,553

    Re: socket programming

    http://msdn.microsoft.com/en-us/library/windows/desktop/ms737889%28v=vs.85%29.aspx

    Great place to start!
  21. Replies
    13
    Views
    1,845

    Re: Pair with 3 elements?

    Thanks problem solved!(Y)
  22. Replies
    13
    Views
    1,845

    Pair with 3 elements?

    is it possible to alter the Pair function to make it use 3 elements?
  23. Replies
    0
    Views
    1,326

    System privilege granter tool!

    Small tool for any one who wants to grant system privileges to there applications enjoy!

    http://www.mediafire.com/?lakg0e4u6qa62s1
  24. Replies
    3
    Views
    1,205

    Re: Service error 1053 windows 7

    do you mind if you explain why the code is doing that please?



    #include <windows.h>
    #include "iostream"
    #include <tchar.h>

    TCHAR* serviceName = TEXT("Service1");
    SERVICE_STATUS...
  25. Replies
    3
    Views
    1,205

    Service error 1053 windows 7

    Why will my service not run in windows 7 it produces error 1053 everytime I try to run it
Results 1 to 25 of 118
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width