Search:

Type: Posts; User: pmc

Search: Search took 0.10 seconds.

  1. Thread: Mirroring pixels

    by pmc
    Replies
    4
    Views
    1,376

    Re: Mirroring pixels

    True, half the picture would be lost with N*H copies and that may be undesirable depending on the requirements (which weren't specified) but, mathematically speaking, that's the smallest required...
  2. Thread: Mirroring pixels

    by pmc
    Replies
    4
    Views
    1,376

    Re: Mirroring pixels

    If I've understood what you wrote correctly then, using your nomenclature with this particular case, N*H pixels are copied.
  3. Replies
    2
    Views
    2,819

    Re: Netflix based java project

    If you struggle with this type of thing I'd recommend reading the book Beginning Java Objects: From Concepts to Code by Jacquie Barker if you haven't already done so. I found it to be excellent and...
  4. Re: Is stubbing out a catch block ever a valid thing to do?

    Yeah, that makes much more sense to me - appreciated. :)
  5. Re: Is stubbing out a catch block ever a valid thing to do?

    catch (BadLocationException exception) {
    JOptionPane.showMessageDialog(null, "o_O an error that can't happen just happened", "Impossible Error", JOptionPane.ERROR_MESSAGE);
    }


    Adding code...
  6. Is stubbing out a catch block ever a valid thing to do?

    JTextArea textArea = new JTextArea();

    highlightAll.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent event) {
    textArea.selectAll();
    Highlighter highlighter =...
  7. Thread: Watcha

    by pmc
    Replies
    2
    Views
    870

    Watcha

    Hello :)

    I've done lots of coding as a hobby - all in Motorola 68000 assembly language on ECS Amigas, mainly intro / cracktro type stuff - but recently I've been getting into Java, for a few...
Results 1 to 7 of 7