Tagged Questions
A JavaScript port of the Processing language.
6
votes
5answers
985 views
Combining the power of Processing.js and Web Workers
I've been doing some reading about two (relatively) new concepts in the Javascript language - Web Workers and John Resig's awesome Processing.js (well, not really a new 'Javascript concept', but you ...
5
votes
7answers
2k views
Knowing two points of a rectangle, how can I figure out the other two?
Hey there guys, I'm learning processing.js, and I've come across a mathematical problem, which I can't seem to solve with my limited geometry and trigonometry knowledge or by help of Wikipedia.
I ...
4
votes
2answers
295 views
Processing clock
I found the Analog clock given in the example http://processingjs.org/learning/basic/clock.
Is there any other sample that demonstrates the analog clock with
numbers ?
4
votes
1answer
354 views
How to dynamically load the different processing instance
I am having Processing.xhtml which has
<html>
<head>
<script language="JavaScript" src="../js/processing-1.0.0.min.js" type="text/javascript"></script>
...
4
votes
1answer
1k views
Processing.js vs. CAKE vs. Raphael.js
I think all of these are basically really cool, and am familiar with their obvious differences (SVG vs. canvas), but i'm unsure of their underlying differences, advantages or limitations in terms of ...
4
votes
3answers
684 views
Making Magic Fairy Dust With JQuery
I have the following task:
Add falling fairy dust (kind of like Tinker Bell) to a website logo.
The falling fairy dust should be continuously animated/falling and fading out.
The website logo is a ...
4
votes
3answers
2k views
Has anyone got processing.js working in IE?
I'm looking for examples of processing.js working in Internet Explorer via ExplorerCanvas or similar.
3
votes
1answer
327 views
Loading external data in processingjs
We want to create a web-based interactive visualization tool to make sense of data that we work with (for those interested: it's about next-generation DNA sequencing data). One of the issues we bump ...
3
votes
1answer
270 views
How to pass dynamic parameters to .pde file
class Shape contains two methods drawCircle() and drawTriangle(). Each
function takes different set of arguments. At present, I invoke this
by calling the pde file directly. How to pass these ...
3
votes
1answer
851 views
My processing.js sketch doesn't load. This shouldn't be too hard to answer
I wanted to run a test of a sketch I just made ported to processing.js. When I load the webpage, I get the following errors from the javascript console in Chrome:
XMLHttpRequest cannot load ...
3
votes
2answers
1k views
Javascript client-data compression
I am trying to develop a paint brush application thru processingjs.
This API has function loadPixels() that will load the RGB values in to the array.
Now i want to store the array in the server db.
...
3
votes
2answers
1k views
Mercator longitude and latitude calculations to x and y on a cropped map (of the UK)
I have this image: http://imgur.com/99tSz.png. A map of the UK (not including Southern Ireland).
I have successfully managed to get a latitude and longitude and plot it onto this map by taking the ...
2
votes
1answer
48 views
which rendering way should I use in a web based project
I have a database of 3D models. I want user can rotate the model and view it in the web page.
So I have to implement an instant rendering algorithm for this.
A raytracing/raycasting method on CPU is ...
2
votes
1answer
64 views
Javascript library that has event listeners for music queues?
I'm making a graphic equalizer (for example, see http://www.youtube.com/watch?v=QHUiXoAG2Wo&feature=related) animation using basic canvas animation. I thought it would be cool if the graphic ...
2
votes
1answer
138 views
Loading processing js via jquery ajax?
I'm having trouble loading a processing js script via a jquery ajax call. The sketch runs fine in its own file but when i load it into a div it doesn't work. Do I need to init the sketch somehow? ...
2
votes
1answer
135 views
Processing.js and JavaScript syntax
Is it possible to use Processing.js with JavaScript syntax?
If yes, may you show some examples?
Would it be much faster? I don't know how much time takes precompilation of Java code.
Is it possible ...
2
votes
2answers
123 views
Processing.js blot onto entire webpage?
My friend has a Flash script that draws Pacman on top of his homepage. The bug is that the flash animation doesn't let him click on his page.
I'm trying to convince him to use Processing.js instead, ...
2
votes
2answers
259 views
Using Processing Sketches With Tabs In Processing JS
I've got a Processing sketch that I'd like to display on my site with Processing.js rather than as a Java applet, however I'm not sure it supports tabs - or classes. Does it need to be written as ...
2
votes
2answers
673 views
Controlling a processing.js sketch w/ a jQuery slider
I've had some luck controlling processing.js sketches using html form elements and would like to use a jQuery slider to do the same.
<script>
$(function() {
$( "#slider-range-min" ...
2
votes
2answers
548 views
Is Processing.js worth it?
I am holding back on seriously pursuing ProcessingJS pieces mostly due to the bloat of the library. I have found that pieces like Ball Droppings do not use the library's Processing syntax parser, ...
2
votes
1answer
859 views
Better event-based redraw() of Processing.js when using noLoop()
I am using Processing.js, with jQuery 1.3.2 at my disposal, and targeting Firefox 3.5, Safari 4 and IE 8 (through ExplorerCanvas). The Processing.js website says "Using Explorer Canvas with ...
2
votes
2answers
397 views
How do I create circles connected with elastic lines in Processing.js?
In Processing.js, I'd like to have circles that represent nodes, with lines connecting linked nodes. I'd like those connected circles to naturally pull toward each other with a kind of elasticity of ...
2
votes
1answer
427 views
Usage/availability of import function in Processing.js
The reference page (use "toggle all") for Processing.js says the import command remains unimplemented. It references a page for the Java Processing language that describes a usage pattern like this: ...
2
votes
4answers
981 views
processing.js loading external files
I want to split my processing.js code into several files but I'm not sure how. I tried doing
<script type="application/processing" src="main.pjs">
to load my processing.js file "main.pjs" but ...
1
vote
0answers
10 views
Processing.js doesn't allow external javascript bind in firefox
I'm trying to send data to a processing script. But for some reason the variable pjs below binds to the canvas "competence1" and enters the first if statement, but then the bindJavascript(this)-call ...
1
vote
1answer
50 views
encode jpg and save to server via php
I am passing a byte array of pixel values from Processing.js to javascript where its base 64 encoded and passed via POST to a php page. I need the php page to encode it as a jpg and save the image to ...
1
vote
1answer
71 views
Slimmer Javascript Canvas Abstraction than Processing.js
I am quite in love with the canvas element and the way Processing.js encapsulates it in a nice API. I am also familar to the regular Processing syntax. Processing.js includes an interpreter that ...
1
vote
2answers
75 views
migrating from processing to processing.js
I am having troubles while migrating my processing code to processing.js. My processing code contains jars, images, fonts in data folder, I want to use same pde files that i have created in processing ...
1
vote
3answers
271 views
Processing.js - Sleep, Wait, TimeOut, Pause, Delay?
Is there a sleep() function for Processing.js? If not what would be a suitable alternative to add a delay in the draw() loop?
I am using JQuery with Processing - can I use a JQuery or Javascript ...
1
vote
1answer
92 views
Beginner question: How do I integrate processing.js with a Rails 3.1 app?
Beginner rails/javascript question:
Let's say that I have a simple Circle model in a Rails 3.1 app with a show action/view. Each Circle has a property called :radius - an integer value.
When I view ...
1
vote
2answers
142 views
Focusing on the canvas element degrades performance of processing JS page
I am working on a ProcessingJS visualization, and I have been noticing that the performance degrades noticeably when a user selects the canvas element.
Unfortunately, I only have it working ...
1
vote
3answers
600 views
CoffeeScript+processing.js draw image fails
I try to load image with processing.js using CoffeeScript and write this simple code:
canvas1_proc = (ps) ->
ps.setup = ->
ps.noLoop()
ps.size(550, 400)
@img = ...
1
vote
1answer
519 views
Web to Arduino serial communication
I am looking to transfer commands/data from a web-page to an Arduino in order to interact with it in the same way you would on a local computer. I have done this with Processing and am just beginning ...
1
vote
2answers
160 views
Processing script in IE8
Why processing.js is not running in IE8? For example the demo given in processing document http://processingjs.org/learning/topic/rollover
1
vote
1answer
125 views
How to position an image inside a display window
I am trying to draw a image and it will be rotated in different
angles. After rotation the image should be positioned in a display
window according to the size(). I tried this using translate(), ...
1
vote
1answer
939 views
SVG and plugin for IE 32-bit && 64-bit
I'm on the lookout for a IE plugin that works with versions 6-8 of IE and for both 32-bit version and 64-bit versions.
So far I've looked at Adobe's SVG viewer but that has been discontinued for 2 ...
1
vote
2answers
381 views
Create a href link on canvas in processing.js
// my problem description is here
i use this code in processing.js
void setup(){
size(window.innerWidth,window.innerHeight);
}
void draw()
{
fill(0,0,0);
text("About",760,312);
}
My ...
1
vote
1answer
345 views
How to draw cube, cuboid and pyramid
I am using the following code to draw a cube.
// Re-creates the default perspective
size(100, 100, P3D);
noFill();
smooth();
float fov = PI/3.0;
fill(25, 210, 12);
float cameraZ = (height/2.0) / ...
1
vote
1answer
127 views
How to load images using loadImage the function
I am using jboss application server for deploying my app containing processing code.
My directory structure looks like this
myapp-war-1.0.0.war\js\processing.js
myapp-war-1.0.0.war\img\bird.png
...
1
vote
1answer
366 views
Get Viewport Width With JQuery and Use In Processing JS
I'm writing a processingjs script that I want to resize depending on the users viewport width. As far as I know there's no functionality for this in processing, so I've been looking at JQuery and ...
1
vote
1answer
224 views
Wrapping processing.js in Google Web Toolkit
I was wondering whether anyone has managed to wrap John Resig's processing.js library in Google Web Toolkit (maybe in combination with GWT Canvas) or knows of any resources or sample code out on the ...
1
vote
0answers
85 views
Using processing.js inside a Firefox extension
I am curious to know if anyone has been successful using processing.js inside a Firefox extension. I am aware of the difficulties of using external libraries inside extensions and the fact that it has ...
1
vote
1answer
267 views
Dragging in processing.js
I am a physics teacher in London and I am trying to learn processing.js
To make teaching resources a very important technique is to be able to drag shapes around. Although I know how to do this in ...
1
vote
4answers
4k views
Is it possible to create transparent canvas
I am developing a paint brush application in javascript using processing.js
It is using a canvas object. I want to keep an image at the background of the canvas. Draw something in the foreground. And ...
1
vote
1answer
477 views
How to have multiple processing.js sketches running at the same time
I'm trying to run multiple sketches on the same page.
The init script specifies that:
/*
* This code searches for all the <script type="application/processing" target="canvasid">
* in your ...
1
vote
6answers
744 views
Canvas Element and IE
Well not just IE, any browser that doesn't currently support it
I want to start using the processing.js framework. It's used for making images with the canvas element. However I'm reluctant to use it ...
1
vote
4answers
2k views
How to call Processing.js function from HTML?
I'm exploring HTML5 and Processing.js.
When the user clicks on an image on my webpage, I'd like to call a function in the Processing.js code. Just calling the function in onclick, as illustrated ...
0
votes
0answers
24 views
Problems with android default browser using processing.js
I've problems using processing.js on Android's default browser.
See following code.
It's working on all devices (iPhone/Safari/Chrome(ium) etc.) and it seems also to run on android default browser but ...
0
votes
0answers
22 views
javascript + HTML5 sketchpad
I'm trying to make a sketchpad using Processing.js. My code is not throwing any errors, yet I cannot even get the canvas to appear. I have no idea what I'm doing wrong. Please help.
Here is my code:
...
0
votes
0answers
30 views
writing in processing vs javascript in processing.js
My understanding is that Processing.js converts Processing code into javascript. But if one does not want to write in Processing, one can use methods and properties of the processing object like so:
...