Learn to code through Processing with ゼロから学ぶプログラミング・ビジュアルアート.
Open your terminal and run the following command to clone the repository:
clone git@github.com:noharalab/zero-pde.gitAlternatively, you can use your favorite Git GUI application.
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_nameReplace your_name with your actual name or a preferred identifier.
Save your Processing sketches (.pde files) in the directory you created in the previous step.
- Open your
.pdefile in PDE. - Click "Run" to execute your code.
Navigate to the Processing installation directory and execute the following command:
./processing-java --sketch=/path/to/zero-pde/your_name/your_sketch --runReplace /path/to/zero-pde/your_name/your_sketch with the actual path to your sketch directory.
After finishing coding, commit and push the code to share it with others:
git add your_sketch
git commit -m "Your commit message"
git pushThis project is licensed under the MIT License.