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

Trying to adapt the code to Python3+ #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

Torxed
Copy link

@Torxed Torxed commented Apr 12, 2016

This is a WIP copy of a version that is working in the sense that it's able to install and run a basic examples (without desired results?):

Preview image

Would love to see this merged into a new branch of the official repo.
I'm well aware that some of these conversions breaks backwards compability.

  • the canvas = Canvas() definition in ./nodebox/graphics/__init__.py confused me a bit, couldn't get it to go global in Python3 so i just created a wrapper function that returns it from the local scope whenever called.
  • the def draw() function doesn't appear to actually draw anything, haven't really started to learn the library yet since i spent most of the day just converting old broken Py2.6 code up to speed. (not done yet perhaps).

Files modified in short:

nodebox-opengl-master\nodebox\ext\psyco\
    core.py
    kdictproxy.py
    profiler.py
    support.py
    __init__.py
nodebox-opengl-master\nodebox\graphics
    beizer.py
    context.py
    geometry.py
    physics.py
    shader.py
nodebox-opengl-master\nodebox\gui
    controls.py
nodebox-opengl-master\nodebox\sound
    osc.py
    process.py

@@ -2535,7 +2544,8 @@ def __init__(self):

def _deepcopy(self, value):
if isinstance(value, FunctionType):
return instancemethod(value, self)
return getattr(self, value.__name__) # Replaces instancemethod(value, self)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be why draw() doesn't work. I noticed that value is usually (almost always?) the draw function? Might be related to why draw() doesn't actually draw anything, because i return it in the wrong way.

This is a working copy of a version that is working in the sense that
it's able to install and run a basic example (without desired results?):
http://i.imgur.com/7L8omha.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant