Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

우준혁/Processing: Difference between revisions

From ZeroWiki
imported>wjh0470
No edit summary
imported>wjh0470
No edit summary
Line 8: Line 8:
* Referance: https://processing.org/reference/
* Referance: https://processing.org/reference/
   Shape
   Shape
     Point - Return type is void.
     Point
****** point(x,y)    2D
      Return type is void.
****** point(x,y,z)  3D
      x, y, z => float
 
      point(x,y)    2D
     Line - Return type is void.
      point(x,y,z)  3D
***** line(x1,y1, x2,y2)      2D
     Line
***** line(x1,y1,z1, x2,y2,z2) 3D
      Return type is void.
      x, y, z => float
      line(x1,y1, x2,y2)      2D
      line(x1,y1,z1, x2,y2,z2) 3D
     Rectange:
     Rectange:
= Shape =
= Shape =
== Source Code ==
== Source Code ==



Revision as of 11:04, 2 November 2015

Contents

  • Processing
  • Grammar

Processing

  • JAVA 기반 언어

Grammar

 Shape
   Point
     Return type is void.
     x, y, z => float
     point(x,y)    2D
     point(x,y,z)  3D
   Line
     Return type is void.
     x, y, z => float
     line(x1,y1, x2,y2)       2D
     line(x1,y1,z1, x2,y2,z2) 3D
   Rectange:

Shape

Source Code