my basic skeleton


/ Published in: Processing
Save to your folder(s)

This is my basic project, i created it because all my project need the same basis. When you save it in processing, think to add a _ at begin of your file name, like this, it will always be on top of you list of skecthes


Copy this code and paste it in your HTML
  1. //////////////////////////////////////////////////////////
  2. //Code By My Name
  3. //Description :
  4. //////////////////////////////////////////////////////////
  5.  
  6.  
  7. void setup(){
  8. size(640,480);
  9. frameRate(30);
  10. }
  11. void draw(){
  12.  
  13. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.