commit dd51ea50187f4cdabfc42cabf98d9e53bac7d7c5 Author: monoid Date: Thu Sep 2 17:46:36 2021 +0900 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..55da7e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +node_modules/** +package-lock.json +dist/** +.cache/** +.vscode/** \ No newline at end of file diff --git a/index.css b/index.css new file mode 100644 index 0000000..dc80a28 --- /dev/null +++ b/index.css @@ -0,0 +1,13 @@ +html{ + width: 100%; + height: 100%; +} +body{ + margin: 0; + padding: 0; + background: rgba(0, 0, 0, 0) linear-gradient(rgb(56, 56, 56), rgb(122, 122, 122)) repeat scroll 0% 0%; +} +#canvas{ + width: 100%; + height: 100%; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..241b9e2 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + Computer Graphics Study + + + + + + + + + \ No newline at end of file diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..0a2b09f --- /dev/null +++ b/index.ts @@ -0,0 +1 @@ +console.log("hello, canvas!"); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..07b5411 --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "computer-graphics-study", + "version": "1.0.0", + "description": "study computer graphics", + "main": "index.js", + "scripts": { + "start": "parcel index.html", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "parcel-bundler": "^1.12.5" + }, + "devDependencies": { + "typescript": "^4.4.2" + } +}