More actions
imported>wjh0470 No edit summary |
imported>wjh0470 No edit summary |
||
| Line 2: | Line 2: | ||
* Processing | * Processing | ||
* Grammar | * Grammar | ||
* About Lecture | |||
== Processing == | == Processing == | ||
* JAVA 기반 언어 | * JAVA 기반 언어 | ||
| Line 21: | Line 22: | ||
= Shape = | = Shape = | ||
== Source Code == | == Source Code == | ||
== Lecture == | |||
Revision as of 14:52, 30 November 2015
Contents
- Processing
- Grammar
- About Lecture
Processing
- JAVA 기반 언어
Grammar
- Referance: https://processing.org/reference/
Shape
Point
Return type is void.
x, y, z => float
2D: point(x,y)
3D: point(x,y,z)
Line
Return type is void.
x, y, z => float
2D: line(x1,y1, x2,y2)
3D: line(x1,y1,z1, x2,y2,z2)
Rectange: