Search:

Type: Posts; User: Ludicrous

Search: Search took 0.08 seconds.

  1. Replies
    2
    Views
    1,070

    Re: Movie of BufferedImages

    Hey, thanks for the reply.

    After doing research, it turns out ImageIO.read() is just dirt slow, and I might need to find some other way to doing my movie.



    This is very true, thank you.
  2. Replies
    2
    Views
    1,070

    Movie of BufferedImages

    Hi guys, I've made a little movie out of BufferedImages and it runs beautifully, however, the problem I'm faced with is loading time.
    By loading time, I mean the time it takes to craft this array...
  3. Replies
    0
    Views
    1,043

    Understanding Java3d library

    Hi, I know java3d is old, but I am using it for my own fun programs. My program so far has a ColorCube and I've set it up so the camera rotates around it like a 3rd person game. My next goal was to...
  4. Thread: KeyEvents

    by Ludicrous
    Replies
    1
    Views
    1,715

    KeyEvents

    Hi, in java when I am pressing a key down, it causes many key events to happen until the key is released.

    My question now is how can I limit how many key events occur while the key is being...
  5. Thread: Screen Blur

    by Ludicrous
    Replies
    2
    Views
    2,029

    Re: Screen Blur

    Update:

    In my paint method I've tried to implement a time delay like so:


    if(shakeActive == true){
    delay = System.currentTimeMillis();
    while(System.currentTimeMillis() < delay + 1000){...
  6. Thread: Screen Blur

    by Ludicrous
    Replies
    2
    Views
    2,029

    Screen Blur

    I am working on a Java Applet.

    I have been trying to find a way to slightly blur the screen when an invalid action is preformed by the user.

    My idea is this: redrawing the current...
  7. Thread: Java fonts

    by Ludicrous
    Replies
    2
    Views
    1,413

    Re: Java fonts

    I really appreciate the reply, I'll continue to work on the problem using the sources you provided
  8. Thread: Java Applet

    by Ludicrous
    Replies
    7
    Views
    2,226

    Re: Java Applet

    I am an idiot. Problem solved - Thanks to everyone who replied
  9. Thread: Java fonts

    by Ludicrous
    Replies
    2
    Views
    1,413

    Java fonts

    Hey,

    In Java, I don't like the fonts provided by the Font class. What can I do to use Courier as it is in MS paint?

    If that is not possible, how might I go about creating a custom font?
  10. Thread: Java Applet

    by Ludicrous
    Replies
    7
    Views
    2,226

    Re: Java Applet

    KevinWorkman: I understand your example and I like it, but the part that is still confusing me is this: what would I replace g.drawOval(x, y, 10, 10); with in order to print an image I have on my...
  11. Thread: Java Applet

    by Ludicrous
    Replies
    7
    Views
    2,226

    Re: Java Applet

    My question is this: How do I display an image in my web browser involving at least 2 classes. One class acting as something like a HUB, and it calls to another class to draw that image.

    The code...
  12. Thread: Java Applet

    by Ludicrous
    Replies
    7
    Views
    2,226

    Java Applet

    Hi, I am writing a java applet to simply, display an image on my web browser. I can do it when I am only using one class, but now I wanted to write the program using two classes.

    ======CLASS:...
Results 1 to 12 of 12