Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Re: error: expected if (!(images. == NUMBER_OF_CUBE_FACES))

    Who wrote the code on line 258? Ask them why they left off the method after the .

    What happens if line 258 test is removed ?


    // Remove if statements that has errors
    if...
  2. Re: error: expected if (!(images. == NUMBER_OF_CUBE_FACES))

    What value does the code need to work? Which methods return that value?

    The message from the code says:
    So that would say the code needs a count of the number of images. What method gives that?
  3. Re: error: expected if (!(images. == NUMBER_OF_CUBE_FACES))

    Use a ; to separate the three parts of the for loop statement.
  4. Re: error: expected if (!(images. == NUMBER_OF_CUBE_FACES))

    Can you copy the API doc for the PointCloud class that shows what fields it has and paste it here?
    Also copy and paste here the API doc for the methods.
    I do not go to other sites.

    Which of them...
  5. Re: error: expected if (!(images. == NUMBER_OF_CUBE_FACES))

    The if statement is a generic part of the java language (and of many other languages).


    What you need to find is the API doc for the PointCloud class.
    Then look in that class for a field whose...
  6. Re: error: expected if (!(images. == NUMBER_OF_CUBE_FACES))

    Look at the API doc for the PointCloud class (images is an instance of that class) and see what field or method will provide the value you want to compare in the if statement.
    Then add that after...
Results 1 to 6 of 6