Search:

Type: Posts; User: Team Shadow V2

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,475

    Just started with OpenGL

    This is the tutorial I am looking at for Open GL.
    http://fly.srk.fer.hr/~unreal/theredbook/chapter01.html

    Here is the program I'm trying to get to work



    #include <iostream>
    #include <gl.h>
  2. Replies
    6
    Views
    897

    It should be noted that the only difference...

    It should be noted that the only difference between my older source and my newer one was the missing x = code. And I do not see how in this case it wastes time, as that is not part of my overall...
  3. Replies
    6
    Views
    897

    I've checked all of your possibilities, and #4...

    I've checked all of your possibilities, and #4 seems to be the best case. However, I can't seem to get the syntax correct. I had a similar problem once. Would someone mind showing me the proper way...
  4. Replies
    6
    Views
    897

    Class Function Help

    Hey I'm having a very, very minor syntax error in one of my class functions that I cannot detect. Here's a sample code.


    void cclass::cfunction() {
    if (var1 != OneArray [x] && var1 < OneArray...
  5. Replies
    1
    Views
    1,293

    How to Scan Strings

    Hey I was just wondering how one would be able to scan a string for certain words. Example: I ask the user for a long sentence, a long static string, and based on the context of the input, the...
  6. I used to know alittle programming language that...

    I used to know alittle programming language that was an offshot of BASIC, BlitzBASIC, which was used specifically for making games. The only way you could ever increment a variable was by having the...
  7. Thanks alot. This is really going to help me with...

    Thanks alot. This is really going to help me with a big project of mine. I thought, moreover my tutorials showed me, that for if statments in functions, the use of the {} wasn't always needed but...
  8. Here's the exact cod that is giving me problems....

    Here's the exact cod that is giving me problems.



    void abc::opget() {
    if ( strcmp (op1, "-") == 0 && strcmp (op2, "-") == 0 )
    num1 = num1 * -1;
    num2 = num2 * -1;

    else if ( strcmp...
  9. Okay, thanks, I'll have to do that. I may or may...

    Okay, thanks, I'll have to do that. I may or may not have to return an integer, depending on how my coding goes later on, so should that be the case, setting it to void would solve this problem as...
  10. Class Function Members and If Statements

    Hey, I'm trying to have a function that is a member of a large class. I'm having trouble with some if statements. Here's an example of what I'm doing.



    int classa :: functiona () {
    if (x > y...
Results 1 to 10 of 10