Skip to content

Latest commit

 

History

History
70 lines (40 loc) · 1.58 KB

File metadata and controls

70 lines (40 loc) · 1.58 KB

zero-pde

Learn to code through Processing with ゼロから学ぶプログラミング・ビジュアルアート.

Getting started

Prerequisites

1. Clone this repository

Open your terminal and run the following command to clone the repository:

clone git@github.com:noharalab/zero-pde.git

Alternatively, you can use your favorite Git GUI application.

2. Create a new directory

Navigate to the root directory of the cloned repository and create a new directory with your name or a preferred identifier:

cd zero-pde
mkdir your_name

Replace your_name with your actual name or a preferred identifier.

3. Save your Processing sketches

Save your Processing sketches (.pde files) in the directory you created in the previous step.

4. Run your code

Using Processing Development Environment (PDE)

  1. Open your .pde file in PDE.
  2. Click "Run" to execute your code.

Using the Command Line

Navigate to the Processing installation directory and execute the following command:

./processing-java --sketch=/path/to/zero-pde/your_name/your_sketch --run

Replace /path/to/zero-pde/your_name/your_sketch with the actual path to your sketch directory.

5. Commit and push your code

After finishing coding, commit and push the code to share it with others:

git add your_sketch
git commit -m "Your commit message"
git push

License

This project is licensed under the MIT License.