Search:

Type: Posts; User: russdb

Search: Search took 0.15 seconds.

  1. A very very simple 3D rendering routine (Almost) - Seeking Help with my code

    I've been working on this project. The goal is to provide simple routines to project objects in 3D space onto a 2D camera screen. I have found and used sources from the internet to perform some of...
  2. Thread - java.lang.NoClassDefFoundError ????????

    In my java console I have the following exception...


    Exception in thread "thread applet-MyAppletForm.class-3" java.lang.NoClassDefFoundError: MyAppletForm$1
    at...
  3. Replies
    4
    Views
    1,171

    Swing & Threading ... Systen hangs

    Consider the code below ...


    public class frmMain extends javax.swing.JFrame {


    Boolean running;


    public class MyThread extends Thread
  4. Replies
    1
    Views
    1,644

    Re: Net Beans - Look and Feel

    Thank's all. I used the following.


    for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {


    if...
  5. Replies
    1
    Views
    1,644

    Net Beans - Look and Feel

    When your in NetBeans and your designing a JFrame you click preview design and it shows the frame with NO look and feel. This is what I want.

    But when the actual program is run look and feel...
  6. Replies
    4
    Views
    2,350

    Re: Graphics Quality - Interconnecting Line Segments ???

    I'm going to respond to my own post. I just modified my code so that it looks for the first and line segment only and connects the two. Here's my code:

    x = screen_left;

    // find right...
  7. Replies
    4
    Views
    2,350

    Graphics Quality - Interconnecting Line Segments ???

    Consider the attached image LINE1.jpg. You'll notice it has a diagonal line in the middle of the screen. The chart actually display's commodity prices but that is NOT what were talking about.

    My...
  8. Replies
    4
    Views
    2,350

    Graphics Quality ???

    I'm trying to get high quality lines drawn in my graphics.

    I'm using the following in C#:
    g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;

    I'm trying to...
  9. Replies
    1
    Views
    1,229

    Graphics repaint() NOT Firing

    Consider the code below for a graphics class that will be used for painting a time-series chart. For now it just prints "painting"


    public class ChartingPanel extends JPanel {

    ...
Results 1 to 9 of 9