Search:

Type: Posts; User: Eldarmk2

Search: Search took 0.06 seconds.

  1. Re: How to check itersection of objects in on collection

    Ok thank you
  2. Re: How to check itersection of objects in on collection

    No my class is caled shape
  3. Re: How to check itersection of objects in on collection

    i know how the intersects90 work since my first java book
    The problem was that i dindt think about 2 iterators in one list.
    This code should now be correct


    Iterator<Object> i =...
  4. Re: How to check itersection of objects in on collection

    No thats not the help, becasue ive asked not about the functionality of the itersect() method.
    Okay and here is a a simple solution of my problem i found.
    Ive to use 2 itertators

    ...
  5. Re: How to check itersection of objects in on collection

    Look at my example code , ive allready the itersects and of course i know that i need an other object.
    Ive asked about objects in one list. According to my example and using you solution it mean...
  6. Replies
    2
    Views
    1,443

    Re: Math.E - what exactly is it?

    This is a constant value that is stored in the Math class;
    Example: the PI is also a standart constant look references to math constants

    class Math
    {
    static double E = 2.718...;
    static...
  7. How to check itersection of objects in on collection

    Hi to all !
    Im looking for a solution to my problem.
    Dont know how to check itersection of rects from objects in one List.
    Example: We have a Object.class;The Object has a simple method ...
  8. Replies
    5
    Views
    1,519

    Re: How to find Object in coordinate system

    Well im allowed to use any source of information to get the test done.
    Im not allowed to copy existing code.
  9. Replies
    5
    Views
    1,519

    Re: How to find Object in coordinate system

    Okay... Here is the code
    Simple PuyoPuyo GAme

    Panel.class

    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import...
  10. Replies
    5
    Views
    1,519

    Re: How to find Object in coordinate system

    Ok a little bit more explanation;
    The objects have one parameter with some vlaues;
    I need to find objects having same values of a variable and 1px away from each other for example x or y;
  11. Replies
    5
    Views
    1,519

    How to find Object in coordinate system

    Hi2all !!
    Well first for all im new to java and ive trying to get a job in a game-dev company;
    As a test ive got a task to create a puyopuyo game.
    All is goin pretty well with the development,...
Results 1 to 11 of 11