GithubHelp home page GithubHelp logo

simudream / processing.py Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jdf/processing.py

0.0 3.0 0.0 223.18 MB

Write Processing sketches in Python

Home Page: https://github.com/jdf/processing.py#python-mode-for-processing

License: Apache License 2.0

Python 69.70% Shell 0.64% GLSL 3.84% AppleScript 0.12% Batchfile 0.08% Java 25.62%

processing.py's Introduction

Python Mode for Processing

Write real Processing sketches in Python.

Tested on Mac OS 10.8 & 10.9, Windows XP, 7 & 8, and Ubuntu 12.10.

Build Status

Quick Start

Processing Development Environment

If you're looking to write Processing sketches in Python, your best bet is to use Python Mode. The project is still in its early days, and documentation is lacking, but there are many example sketches to get you started. In general, the Processing reference works just fine for Python mode.

First, download Processing. Then, install Python Mode:

Then try your first sketch:

def setup():
    size(600, 600)
    colorMode(HSB)
    noStroke()


def draw():
    fill(0x11000000)
    rect(0, 0, width, height)
    fill(frameCount % 255, 255, 255)
    ellipse(mouseX, mouseY, 20, 20)

Processing.py

For command-line hackers and people who need much greater flexibility in how they construct and integrate their programs, there's processing.py.

Then, paste this code into a file, e.g., mysketch.py.

def setup():
    size(600, 400)

def draw():
    ellipse(mouseX, mouseY, 10, 10)

Drag and drop your sketch onto one of these files, according to your platform:

You can also run the sketch from the command line, either with the included launcher script:

$ ./processing-py.sh path/to/mysketch.py

or using your own Java runtime environment:

$ java -jar processing-py.jar path/to/mysketch.py

Documentation

To learn Processing.py check out these resources:

Processing.py comes with many examples, most of which are exactly like the example sketches that come with Processing, but converted to Python.

$ processing-py.sh examples.py/Basics/Math/noisefield.py
$ processing-py.sh examples.py/Library/OpenGL/SpaceJunk.py
$ processing-py.sh examples.py/3D/Typography/KineticType.py
$ processing-py.sh examples.py/3D/Textures/TextureCube.py

Using Processing Libraries

Processing.py is implemented in Java, and is designed to be compatible with the existing ecosystem of Processing libraries.

  • Put processing extension libraries in the libraries subdirectory of your processing.py installation. Processing.py will search every jar file and directory beneath that special directory, so you don't need to be too fussy about where things go. Just unzip Processing libraries right there.

  • Import the library in one of the usual Python ways, as in these snippets:

      from peasy import PeasyCam
      # or
      import peasy.PeasyCam
      # or
      import peasy.PeasyCam as PeasyCam
    

    Unfortunately, from foo import * is not supported.

  • Then, in your setup() method:

      cam = PeasyCam(this, 200)
    

    Many libraries need a reference to "the current PApplet", and that's what this is for. Of course, there's no such thing as this in Python; it's just something that processing.py provides for you for compatibility with such libraries.

Included Libraries

Some Processing libraries may not work with processing.py right out of the box. In particular, any library that uses Java reflection to call specially-named functions in your sketch will not work. However, we're happy to modify processing.py to work with any of the official Processing libraries. Here are the libraries that have required special handling in processing.py, and are included in the processing.py download:

If you find that some Processing library doesn't work as expected with processing.py, please let us know in the bug tracker.

FAQ

  • How do I report bugs or request new features?

    Please report any issue in the bug tracker.

  • How can I create a launcher for my sketch?

    Add these lines near the top of your script:

    import launcher
    launcher.create()
    
  • How should I load data?

    [Tentative] Along with the launcher, consider using pwd() for file paths. For a given argument it resolves the path for an object relative to the currently running script:

    data = load(pwd("data.txt"))
    

    In that case, processing.py will try to search data.txt always where your script resides.

  • How can I use Ani, or any other library that modifies fields?

    Some libraries such as Ani require you to specify a variable name for animation. Unfortunately they cannot access Python variables directly (and Java's built in classes are immutable).

    To solve this problem we instead create a mutable PrimitiveFloat object. This object has a field .value, which you can use for these purposes.

    import jycessing.primitives.PrimitiveFloat as Float
    x = Float(100.0)
    Ani.to(x, 200, "value", 50);  # "value" is the name of the Float's internal field
    

    In case you need other primitive values, please let us know!

  • Why was this project created?

    I (Jonathan) recently gave a talk about Processing to a group of rather bright 8th-graders, as part of a computer-programming summer camp they were attending at my office. Their curriculum up to that point had been in Python, which is an eminently sensible choice, given the pedagogical roots of the language.

    The kids were really turned on by the demos--I showed them the white glove, and Golan Levin's New Year's cards--but they were bogged down by Processing's C-like syntax, which really seems arcane and unnecessarily complex when you're used to Python.

    I shared my experience with Processing creators Ben Fry and Casey Reas, and they told me that, indeed, the original Processing was a fork of "Design By Numbers", with Python and Scheme support hacked in. Support for a multi-lingual programming environment was always part of the plan, so they were enthusiastic about any new attempt at the problem.

    I was able to hack up a proof of concept in a couple of hours, and have managed to create something worth sharing in a couple of weeks. I was only able to do it at all thanks to the brilliant and beautiful Jython project.

    At the time of Processing's first public release, August of 2001, Jython was too young a project to be used in this way. But now, having done absolutely no work to profile and optimize, I can get hundreds of frames per second of 3D graphics on my linux box. So, kudos to the Processing project, and kudos to Jython!

Credits

Written by Jonathan Feinberg <[email protected]> Launcher & many improvements by Ralf Biedert <[email protected]>

Also, YourKit, LLC was so kind to sponsor a license for their excellent YourKit Java Profiler. Thank you very much!

processing.py's People

Contributors

amitkot avatar federicobond avatar google-feinberg avatar jonathanperret avatar kazimuth avatar mileshiroo avatar ralfbiedert avatar tildebyte avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.