Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed module to nodeboxgl and renamed c-extensions #18

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ Thumbs.db
# Temporary editor files
*.swp
.idea


# Temporary example files
examples/12-experimental/test.mp4
7 changes: 2 additions & 5 deletions examples/01-basics/01-rect.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

# Import the drawing commands from the NodeBox module.
from nodebox.graphics import *
from nodeboxgl.graphics import *
# This includes:
# - drawing primitives such as line(), rect(), ellipse(), triangle(),
# - color commands such as fill(), stroke(), strokewidth(),
Expand Down Expand Up @@ -33,4 +30,4 @@ def draw(canvas):
rect(x=100, y=10, width=300, height=max(100, canvas.mouse.y))

canvas.size = 500, 500 # Set the size of the canvas.
canvas.run(draw) # Register the draw function and start the application.
canvas.run(draw) # Register the draw function and start the application.
7 changes: 2 additions & 5 deletions examples/01-basics/02-color.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# When you run a script, NodeBox reads the code from top to bottom, like a recipe.
# When it encounters coloring or transformation commands, it changes the current state.
Expand Down Expand Up @@ -57,4 +54,4 @@ def draw(canvas):
text("%s,%s"%(x,y), x, y)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/01-basics/03-frame.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# Here is the "Hypnoval", a classic example in NodeBox for Mac OS X.
# It uses the canvas.frame counter to create variation in each frame.
Expand Down Expand Up @@ -38,4 +35,4 @@ def draw(canvas):


canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/01-basics/04-mouse.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# A freehand drawing application!

Expand Down Expand Up @@ -41,4 +38,4 @@ def draw(canvas):
line(m.x, m.y, m.x - m.dx, m.y - m.dy)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/02-transform/01-spiral.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

def draw(canvas):

Expand Down Expand Up @@ -50,4 +47,4 @@ def draw(canvas):
# has a different effect than scaling / rotating first.

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/02-transform/02-push.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# Often, you may need groups of shapes that you can transform as a whole.
# For example: a planet that has moons rotating around it.
Expand Down Expand Up @@ -39,4 +36,4 @@ def draw(canvas):
pop() # Move the origin back to the sun. Undo rotation.

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/03-image/01-image.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# The main purpose of NodeBox for OpenGL is drawing images to the canvas.
# Typically, an image can be a JPEG or TIFF file, or a PNG if it uses transparency.
Expand Down Expand Up @@ -29,4 +26,4 @@ def draw(canvas):
image(img, x=-img.width/2, y=-img.height/2)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
9 changes: 3 additions & 6 deletions examples/03-image/02-color.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodebox.graphics.geometry import smoothstep
from nodeboxgl.graphics import *
from nodeboxgl.graphics.geometry import smoothstep

img = Image("creature.png")

Expand Down Expand Up @@ -32,4 +29,4 @@ def draw(canvas):
# or simply a (R,G,B)-tuple, which is faster because no Color needs to be constructed.

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/03-image/03-filter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# This example will make more sense after you've seen the examples in /07-filter

Expand Down Expand Up @@ -33,4 +30,4 @@ def draw(canvas):
dy=canvas.mouse.relative_y))

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
5 changes: 1 addition & 4 deletions examples/03-image/04-quad.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

img = Image("creature.png")

Expand Down
11 changes: 4 additions & 7 deletions examples/03-image/05-pixels.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# The pixels() command yields a list of pixels from a given image.
# Since this is a relatively slow operation, this is not useful for dynamic image processing,
Expand All @@ -25,8 +22,8 @@ def draw(canvas):

# Here we simply use pixels from the image as a color palette.
for i in range(15):
x = random(p.width)
y = random(p.height)
x = int(random(p.width))
y = int(random(p.height))
clr = p.get(x, y)
clr.alpha *= 0.5
fill(clr)
Expand All @@ -36,4 +33,4 @@ def draw(canvas):
ellipse(random(canvas.width), random(canvas.height), r*2, r*2)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/03-image/06-noise.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# Create a pixels array from a solid white image:
p = Pixels(solid(200, 200, Color(1)))
Expand Down Expand Up @@ -33,4 +30,4 @@ def draw(canvas):
image(p, 150, 150)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/04-text/01-text.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# In the classic NodeBox for Mac OS X, text can easily be drawn with text(), font(), fontsize().
# This is possible here as well, but it is much faster to prepare the text beforehand:
Expand All @@ -28,4 +25,4 @@ def draw(canvas):
text(txt, x, y)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/04-text/02-style.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

txt = Text("So long!\nThanks for all the fish.",
font = "Droid Serif",
Expand All @@ -23,4 +20,4 @@ def draw(canvas):
text(txt, x, y)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/05-path/01-curve.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# The BezierPath object handles complex vector shapes made up of curves and lines.
# As with images and text, it is a good idea to create the path once, outside the draw loop.
Expand Down Expand Up @@ -45,4 +42,4 @@ def draw(canvas):
drawpath(leaf)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/05-path/02-clip.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# Here, the leaf shape from the previous example is reused,
# but instead of simply coloring it with blue, we give it a nice gradient touch.
Expand Down Expand Up @@ -38,4 +35,4 @@ def draw(canvas):
drawpath(leaf, stroke=(0,0,0,0.25), strokewidth=1, fill=None)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
5 changes: 1 addition & 4 deletions examples/05-path/03-tangent.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# The classic NodeBox for Mac OS X has interesting path mathematics functionality.
# This functionality is also present in NodeBox for OpenGL.
Expand Down
5 changes: 1 addition & 4 deletions examples/05-path/04-text.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# The classic NodeBox for Mac OS X has an interesting textpath() function
# that transforms a string into a BezierPath.
Expand Down
9 changes: 3 additions & 6 deletions examples/05-path/05-spider.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodebox.graphics.geometry import distance
from nodeboxgl.graphics import *
from nodeboxgl.graphics.geometry import distance
from math import sqrt

def spider(string, x=0, y=0, radius=25, **kwargs):
Expand Down Expand Up @@ -53,4 +50,4 @@ def draw(canvas):
image(img)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/05-path/06-handle.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# I always seem to forget how Bezier handles work.
# This example clarifies which handles control what part of a curve.
Expand Down Expand Up @@ -57,4 +54,4 @@ def draw(canvas):
text("ptx.ctrtl2", x=pt.ctrl2.x, y=pt.ctrl2.y+5)

canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
5 changes: 1 addition & 4 deletions examples/05-path/07-fit.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0,os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# This example demonstrated how to fit text to a path using the directed() command
# (thanks to Karsten Wolf).
Expand Down
5 changes: 1 addition & 4 deletions examples/05-path/08-drag.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys;sys.path.insert(0,os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# A classic NodeBox example (http://nodebox.net/code/index.php/Dendrite).
# It registers the dragged mouse movements,
Expand Down
7 changes: 2 additions & 5 deletions examples/06-math/01-attractor.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *
from math import sin, cos

# The Peter De Jong attractor feeds its previous value back into the equation,
Expand Down Expand Up @@ -51,4 +48,4 @@ def draw(canvas):
pass

canvas.size = 700, 700
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/07-filter/01-shadow.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

# Load an image from file.
# For performance, it's a good idea to create images once, outside the draw() loop.
Expand Down Expand Up @@ -37,4 +34,4 @@ def draw(canvas):
# Start the application:
canvas.fps = 60
canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
7 changes: 2 additions & 5 deletions examples/07-filter/02-bump.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Add the upper directory (where the nodebox module is) to the search path.
import os, sys; sys.path.insert(0, os.path.join("..",".."))

from nodebox.graphics import *
from nodeboxgl.graphics import *

img = Image("creature.png")

Expand All @@ -28,4 +25,4 @@ def draw(canvas):
# Start the application:
canvas.fps = 60
canvas.size = 500, 500
canvas.run(draw)
canvas.run(draw)
Loading