Skip to content
Snippets Groups Projects
Commit e0838538 authored by Sebastian Meier's avatar Sebastian Meier
Browse files

task-01

parent 466699d8
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@
![Parametric Design](https://github.com/FH-Potsdam/learning-parametric-design/blob/main/thumbnail.png?raw=true)
This is the companion repository for the ["Learning Parametric Design"](https://github.com/fh-potsdam/teaching-parametric-design) repository at the [design department](https://www.fh-potsdam.de/design/) at the Potsdam University of Applied Sciences.
TEST
## Welcome to parametric design 👋
This seminar is an introduction creating design artifacts with code. In contrast to other creative coding classes, we take a specific focus on how to use code to create digital artifacts that we can use in other software or even rapid prototyping tools like laser cutters/engravers, CNC milling machines, 3D-printers or even stitching machines.
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sketch1</title>
<link rel="stylesheet" type="text/css" href="/libraries/p5js/p5.css">
</head>
<body>
<script src="/libraries/p5js/p5.min.js"></script>
<script src="/libraries/p5js/libraries/p5.svg.js"></script>
<script src="sketch.js"></script>
</body>
</html>
function preload(){
// preload assets
}
function setup() {
createCanvas(400, 400);
frameRate(5);
}
function draw() {
background(0, 50);
noLoop();
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sketch1</title>
<link rel="stylesheet" type="text/css" href="/libraries/p5js/p5.css">
</head>
<body>
<script src="/libraries/p5js/p5.min.js"></script>
<script src="/libraries/p5js/libraries/p5.svg.js"></script>
<script src="sketch.js"></script>
</body>
</html>
function preload(){
// preload assets
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(100);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment