processing 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
-
4
- require_relative '../helper'
5
-
6
-
7
- def graphics(width = 10, height = 10, &block)
8
- Processing::Processing::Graphics.new(width, height).tap do |g|
9
- g.beginDraw {block.call g, g.getInternal__} if block
10
- end
11
- end