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
7
votes
1 answer

How to install NodeBox for console

I'm working on OS X Mavericks and want to use the NodeBox modules in Python scripts. The post about how to install the modules for console is from 2009 and doesn't work anymore as this refers to version 1.9.x (current is 3.0.40). Also the SVN source…
jurihandl
  • 665
  • 1
  • 9
  • 24
4
votes
1 answer

IronPython and Nodebox in C#

My plan: I'm trying to setup my C# project to communicate with Nodebox to call a certain function which populates a graph and draws it in a new window. Current situation: [fixed... see Update2] I have already included all python-modules needed, but…
Tom Siwik
  • 992
  • 9
  • 22
4
votes
1 answer

Cannot import nodebox.graphics on Python

I'm trying to use NodeBox for OpenGL with Python, but I'm being unable to import the library on both Python 2 and 3. espaco@Arch ~> python2 Python 2.7.11 (default, Dec 6 2015, 15:43:46) [GCC 5.2.0] on linux2 Type "help", "copyright", "credits" or…
Bernardo Meurer
  • 2,295
  • 5
  • 31
  • 52
4
votes
1 answer

Adding label to an edge of a graph in nodebox opnegl

I am trying to add a label to each edge in my Graph, below: Basically the above with labels for each edge at the center: I've tried to add a label when I add an edge to each graph, like so (for the graph g): g.add_edge(... label=edge.distance…
Games Brainiac
  • 80,178
  • 33
  • 141
  • 199
4
votes
1 answer

is there a way to install the nodebox English linguistics library through pip install?

The NodeBox English linguistic library for Python has some nice features, like conjugation, that could be very useful for a project. I tried installing through pip in a particular virtualenv, but pip search nodebox only brings up: NodeBox …
arturomp
  • 28,790
  • 10
  • 43
  • 72
3
votes
2 answers

Apps Similar to Nodebox?

I'm looking for apps/environments similar to Nodebox. Nodebox is so cool and I want to know if there were other similar apps out there. They don't have to be graphics-related; I'm interested in software that uses programming languages in a new way.
Devoted
  • 177,705
  • 43
  • 90
  • 110
3
votes
2 answers

Installing NodeboxOpenGL on windows

Hello I am trying to install and make use of NodeboxOpenGL, the python library so I can create my own graphs with nodes and edges. But I am running into some trouble, starting off at NodeBox OpenGL site. I downloaded NodeBox for OpenGL and then…
user595985
  • 1,543
  • 4
  • 29
  • 55
2
votes
1 answer

NodeBox error for a verb in python

I downloaded the package http://nodebox.net/code/index.php/Linguistics#verb_conjugation I'm getting an error even when I tried to get a tense of a verb . import en print en.is_verb('use') #prints TRUE print en.verb.tense('use') KeyError …
Ambika
  • 335
  • 2
  • 3
  • 8
1
vote
1 answer

Running Graph library with nodebox on windows + None Type Error

I have installed nodebox 2 for windows on my machine and have verified that all the examples are running as it is. Now i want to use graph library Graph for the same. I went and copied it as it is in my site-packages folder and then ran the examples…
user506710
1
vote
1 answer

Nodebox graph module

I did the Nodebox tutorial on the graph library: http://nodebox.net/code/index.php/Graph#loading_the_library I installed the library in Application Support I pasted the following code: graph = ximport("graph") create(iterations=1000, distance=1.0,…
digit
  • 1,513
  • 5
  • 29
  • 49
1
vote
1 answer

Nodebox open GL Graph, size function not recognized. (Ubuntu)

I am trying to use Nodebox Graph on Ubuntu and python 2.7. So I got Nodebox OpenGL: http://www.cityinabottle.org/nodebox/ Nodebox Graph: https://www.nodebox.net/code/index.php/Graph I tried to run their basic example 1 : graph =…
patapouf_ai
  • 17,605
  • 13
  • 92
  • 132
1
vote
1 answer

Algorithm to create polygons of enclosed areas

I have multiple circles (as list of connected vertices) at random positions. When the circles intersect, closed areas are created (just like in a venn diagram http://en.wikipedia.org/wiki/Venn_diagram) How do I generate separate polygons of all of…
1
vote
1 answer

Pydev Nodebox: "AttributeError: 'NoneType' object has no attribute 'WIDTH'"

I am trying to create a graph of the connections between the users in my database using nodebox(ubuntu 12.04, python 2.7, django 1.3), but when I enter the following instructions, I get the error message underneath it: """ g.draw(weighted=False,…
Raymond Kalonji
  • 345
  • 3
  • 14
0
votes
2 answers

Producing Vector Graphics Movies with something like Nodebox or Processing

I like the idea of Nodebox and Processing, and would like to generate movies to visualize some data/algorithms. However, Nodebox exports extremely bloated Quicktime files with frame by frame images, and Processing only exports Java applications. I…
highBandWidth
  • 16,751
  • 20
  • 84
  • 131
0
votes
1 answer

nodebox grid() vs. grid library

In Nodebox you can have: grid() as a command grid as a library If I follow this tutorial: http://nodebox.net/code/index.php/Grid It says to import grid with this: grid = ximport("grid") But in nodebox this is a command, which is why I believe…
digit
  • 1,513
  • 5
  • 29
  • 49
1
2