1. NodeBox 1
    1. Homepage
    2. NodeBox 3Node-based app for generative design and data visualization
    3. NodeBox OpenGLHardware-accelerated cross-platform graphics library
    4. NodeBox 1Generate 2D visuals using Python code (Mac OS X only)
  2. Gallery
  3. Documentation
  4. Forum
  5. Blog

Nodebox and Eclipse

Posted by Halftone on May 31, 2007

Is possible to set eclipse to program in nodebox-python?


 
Posted by anonymous on May 31, 2007

u mean like this?

size(300, 300)
speed(30)
def setup():
    global pos
    pos = -280
def draw():
    global pos
    background(0)
    fill(1, 1, 0)
    oval(10, 10, WIDTH-20, HEIGHT-20)
    fill(0)
    oval(pos, 10, WIDTH-20, HEIGHT-20)
    if pos == WIDTH: pos = -280
    else: pos += 1
or do you mean the shape a planet's orbit makes, an ellipse? that's more complicated.



Posted by Zacharias Enochsson on May 31, 2007

Or are you talking about using Eclipse, the code-editor for editing NodeBox scripts?



Posted by anonymous on May 31, 2007

oh, that too...