Questions tagged [nodebox]

NodeBox is an application that lets you create 2D visuals using Python programming code.

Nodebox has a few flavors:

  • NodeBox 1 Generate 2D visuals using Python code (Mac OS X only).
  • NodeBox 3 Node-based app for generative design and data visualization.
  • NodeBox OpenGL Hardware-accelerated graphics library.

NodeBox 2 is no longer actively supported.

18 questions
0
votes
1 answer

Nodebox Python clean up

So I tried running an example Nodebox tutorial. Here's the code: g = grid.create(2, 2, 250, 250) g.top.left.split(2, 2) g.top.left.bottom.right.split(2, 2) # fetch images from Morguefile.com web = ximport("web") img =…
digit
  • 1,513
  • 5
  • 29
  • 49
0
votes
0 answers

nodebox -python simple animation doesn't work

here's my code using nodebox 1.9 and python3. when I try to draw the still image it works, however, when I'm try to animate it using this template https://www.nodebox.net/codindex.php/Animation it does nothing but drawing a blank screen...can…
0
votes
1 answer

use nodebox as a module for python 3.5

I'm trying to import everything from nodebox.graphics into my python 3.5 code but I get errors: ImportError: No module named 'bezier' To mention, this module exists in nodebox/graphics. As I searched in python documentations, I have to add the…
Athena
  • 543
  • 10
  • 30
1
2