-
# 概要
観察・実験結果を残し、再現できるようにしたい
# 課題
- 観察結果はデータ量が大きい
- 動画にしてYouTubeなどにアップロードしてはどうか
- 最低限commit idがあれば再現はできる
- そのバージョンをリポジトリ内に保管して凍結するとするとそれも容量を圧迫する
- リポジトリの生ファイルを読み込めないか
- 例:https://raw.gi…
-
Should help with SVG manipulations & animations that I want to add.
http://www.vectorgraphit.com/top-javascript-librarys-to-work-with-svgs/
http://webdesignmoo.com/2014/10-useful-jquery-svg-libraries…
-
I've thought about it, it seems that there's no natural way of handling this in the Processing.js. So what? A few possibilities here:
- if there's a Javascript way of doing this, do it then bind it to…
-
When I made this: https://www.khanacademy.org/computer-programming/3d-maze-game/5316019273465856 lots of people told me they were getting an error. E.g. "Why can't I play? It just says undefined!"
At …
-
reports PFont not being there at:
https://github.com/processing-js/processing-js/blob/master/processing.js#L9879
`Uncaught TypeError: Cannot read property 'get' of null`
Example taken from:
http://p…
-
This Processing code has origins in 2.0 as far as I know, but it doesn't appear to exist in Processing.js, specifically the createShape() function.
```
PShape square;
square = createShape(RECT, 0, 0,…
-
Hey,
```
void setup() {
size(270, 250);
background( 100 );
}
void draw() {
background( 100 );
stroke(204, 102, 0);
line(100, 10, 100, 90);
// rect(30, 20, 55, 55);
}
```
In this case t…
-
You are too slow, I only can help you saying that is a very good idea. Go ahead.
-
``` javascript
Point = (function (_super) {
__extends(Point, _super);
Point.name = 'Point';
function Point() {
return Point.__super__.constructor.ap…
-
Infinite Paper needs to draw text. One step toward that would be to modify the ASH circle example to use text labels instead of circles. This would mean asking the user for text input when the object …