Last active
June 17, 2024 00:10
-
-
Save sdkfz181tiger/1995b5474684e038c653433ac387d1aa to your computer and use it in GitHub Desktop.
疑似3Dであっさりアウトラン_チュートリアル版
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
// URL: https://openprocessing.org/sketch/957775 | |
const WHITE = "#ffffff"; | |
const BLACK = "#000000"; | |
const SCREEN = 100; // スクリーンまでの距離 | |
const points = [];// 3D空間の座標を格納する配列 | |
let eyeX = 0; // 視線の座標 | |
let eyeY = 400; | |
let eyeZ = 0; | |
function setup(){ | |
//createCanvas(windowWidth, windowHeight); | |
createCanvas(480, 320); | |
angleMode(DEGREES); noLoop(); | |
noFill(); | |
stroke(WHITE); strokeWeight(1); | |
// x-z平面に10x10の点を用意する | |
const pad = 30; | |
for(let i=-5; i<5; i++){ | |
for(let j=0; j<30; j++){ | |
const x = i * pad; | |
const y = 0; | |
const z = j * pad; | |
const point = {x: x, y: y, z: z} | |
points.push(point); | |
} | |
} | |
} | |
function draw(){ | |
background(BLACK); | |
// キャンバスに描画する | |
for(const point of points){ | |
// 3D座標を2D座標に変換 | |
const [x, y, s] = project(point.x-eyeX, point.y+eyeY, point.z-eyeZ); | |
circle(x, y, 5); | |
} | |
saveCanvas("test.png"); | |
} | |
// 3D座標を2D座標に変換する関数 | |
function project(x, y, z){ | |
const s = SCREEN / z; | |
const _x = x*s + width/2; | |
const _y = y*s + height/2; | |
return [_x, _y, s]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
// URL: https://openprocessing.org/sketch/957775 | |
const WHITE = "#ffffff"; | |
const BLACK = "#000000"; | |
const SCREEN = 80; // スクリーンまでの距離 | |
const R_WIDTH = 780;// 道の横幅 | |
const R_DEPTH = 10; // 道の奥行 | |
const lines = [];// ラインオブジェクトを格納する配列 | |
let eyeX = 0; // 視線の座標 | |
let eyeY = 400; | |
let eyeZ = 0; | |
function setup(){ | |
//createCanvas(windowWidth, windowHeight); | |
createCanvas(480, 320); | |
angleMode(DEGREES); noLoop(); | |
noFill(); | |
stroke(WHITE); strokeWeight(1); | |
// ラインオブジェクトを用意 | |
for(let i=0; i<100; i++){ | |
const line = new MyLine(); | |
line.project(eyeX, eyeY, R_DEPTH*i-eyeZ); | |
lines.push(line); | |
} | |
} | |
function draw(){ | |
background(BLACK); | |
// キャンバスに描画する | |
for(let i=0; i<80; i++){ | |
const lA = lines[i]; | |
lA.project(eyeX, eyeY, R_DEPTH*i-eyeZ); | |
line(lA.x-lA.w/2, lA.y, lA.x+lA.w/2, lA.y); | |
} | |
saveCanvas("test.png"); | |
} | |
// ラインオブジェクト(台形の横線で使う) | |
class MyLine{ | |
constructor(){ | |
this._x = 0; | |
this._y = 0; | |
this._w = 0; | |
this._c = 0; | |
this._b = 0; | |
} | |
project(x, y, z){// 2D空間の座標に変換 | |
const s = SCREEN / z; | |
this._x = x*s + width/2; | |
this._y = y*s + height/2; | |
this._w = R_WIDTH * s; | |
} | |
get x(){return this._x;} | |
get y(){return this._y;} | |
get w(){return this._w;} | |
set curve(n){this._c = n;} | |
get curve(){return this._c;} | |
set bank(n){this._b = n;} | |
get bank(){return this._b;} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
// URL: https://openprocessing.org/sketch/957775 | |
const WHITE = "#ffffff"; | |
const BLACK = "#000000"; | |
const SCREEN = 80; // スクリーンまでの距離 | |
const R_WIDTH = 780;// 道の横幅 | |
const R_DEPTH = 10; // 道の奥行 | |
const lines = [];// ラインオブジェクトを格納する配列 | |
let eyeX = 0; // 視線の座標 | |
let eyeY = 400; | |
let eyeZ = 0; | |
function setup(){ | |
//createCanvas(windowWidth, windowHeight); | |
createCanvas(480, 320); | |
angleMode(DEGREES); frameRate(60); | |
noFill(); | |
stroke(WHITE); strokeWeight(1); | |
// ラインオブジェクトを用意 | |
for(let i=0; i<100; i++){ | |
const line = new MyLine(); | |
line.project(eyeX, eyeY, R_DEPTH*i-eyeZ); | |
lines.push(line); | |
} | |
} | |
function draw(){ | |
background(BLACK); | |
eyeZ += 2;// 視点を前へ | |
// キャンバスに描画する | |
const start = floor(eyeZ/R_DEPTH) + 1; | |
for(let i=start; i<start+80; i++){ | |
const iA = i % lines.length; | |
const lA = lines[iA]; | |
lA.project(eyeX, eyeY, R_DEPTH*i-eyeZ); | |
line(lA.x-lA.w/2, lA.y, lA.x+lA.w/2, lA.y); | |
} | |
} | |
// ラインオブジェクト(台形の横線で使う) | |
class MyLine{ | |
constructor(){ | |
this._x = 0; | |
this._y = 0; | |
this._w = 0; | |
this._c = 0; | |
this._b = 0; | |
} | |
project(x, y, z){// 2D空間の座標に変換 | |
const s = SCREEN / z; | |
this._x = x*s + width/2; | |
this._y = y*s + height/2; | |
this._w = R_WIDTH * s; | |
} | |
get x(){return this._x;} | |
get y(){return this._y;} | |
get w(){return this._w;} | |
set curve(n){this._c = n;} | |
get curve(){return this._c;} | |
set bank(n){this._b = n;} | |
get bank(){return this._b;} | |
} | |
function keyPressed() { | |
if(key === "s") saveGif("mySketch", 10); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
// URL: https://openprocessing.org/sketch/957775 | |
const WHITE = "#ffffff"; | |
const BLACK = "#000000"; | |
const SCREEN = 80; // スクリーンまでの距離 | |
const R_WIDTH = 780;// 道の横幅 | |
const R_DEPTH = 10; // 道の奥行 | |
const lines = [];// ラインオブジェクトを格納する配列 | |
let eyeX = 0; // 視線の座標 | |
let eyeY = 400; | |
let eyeZ = 0; | |
function setup(){ | |
//createCanvas(windowWidth, windowHeight); | |
createCanvas(480, 320); | |
angleMode(DEGREES); frameRate(60); | |
noFill(); | |
stroke(WHITE); strokeWeight(1); | |
// ラインオブジェクトを用意 | |
for(let i=0; i<100; i++){ | |
const line = new MyLine(); | |
if(20<i && i<40){ | |
line.curve = 0.8; | |
line.bank = 0.8; | |
} | |
if(40<i && i<60){ | |
line.curve = -0.5; | |
line.bank = -0.2; | |
} | |
line.project(eyeX, eyeY, R_DEPTH*i-eyeZ); | |
lines.push(line); | |
} | |
} | |
function draw(){ | |
background(BLACK); | |
eyeZ += 2;// 視点を前へ | |
// カーブ | |
let oX = 0; | |
let dX = 0; | |
// 坂 | |
let oY = 0; | |
let dY = 0; | |
// キャンバスに描画する | |
const start = floor(eyeZ/R_DEPTH) + 1; | |
for(let i=start; i<start+80; i++){ | |
const iA = i % lines.length; | |
const lA = lines[iA]; | |
oX += dX; | |
dX += lA.curve;// 次に描画するカーブの差分 | |
oY += dY; | |
dY += lA.bank;// 次に描画するバンクの差分 | |
lA.project(eyeX-oX, eyeY-oY, R_DEPTH*i-eyeZ); | |
line(lA.x-lA.w/2, lA.y, lA.x+lA.w/2, lA.y); | |
} | |
} | |
// ラインオブジェクト(台形の横線で使う) | |
class MyLine{ | |
constructor(){ | |
this._x = 0; | |
this._y = 0; | |
this._w = 0; | |
this._c = 0; | |
this._b = 0; | |
} | |
project(x, y, z){// 2D空間の座標に変換 | |
const s = SCREEN / z; | |
this._x = x*s + width/2; | |
this._y = y*s + height/2; | |
this._w = R_WIDTH * s; | |
} | |
get x(){return this._x;} | |
get y(){return this._y;} | |
get w(){return this._w;} | |
set curve(n){this._c = n;} | |
get curve(){return this._c;} | |
set bank(n){this._b = n;} | |
get bank(){return this._b;} | |
} | |
function keyPressed() { | |
if(key === "s") saveGif("mySketch", 10); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
// URL: https://openprocessing.org/sketch/957775 | |
const WHITE = "#ffffff"; | |
const BLACK = "#000000"; | |
const SCREEN = 80; // スクリーンまでの距離 | |
const R_WIDTH = 780;// 道の横幅 | |
const R_DEPTH = 10; // 道の奥行 | |
const lines = [];// ラインオブジェクトを格納する配列 | |
let eyeX = 0; // 視線の座標 | |
let eyeY = 400; | |
let eyeZ = 0; | |
function setup(){ | |
//createCanvas(windowWidth, windowHeight); | |
createCanvas(480, 320); | |
angleMode(DEGREES); frameRate(60); | |
noFill(); | |
stroke(WHITE); strokeWeight(1); | |
// ラインオブジェクトを用意 | |
for(let i=0; i<100; i++){ | |
const line = new MyLine(); | |
if(20<i && i<40){ | |
line.curve = 0.8; | |
line.bank = 0.8; | |
} | |
if(40<i && i<60){ | |
line.curve = -0.5; | |
line.bank = -0.2; | |
} | |
line.project(eyeX, eyeY, R_DEPTH*i-eyeZ); | |
lines.push(line); | |
} | |
} | |
function draw(){ | |
background(BLACK); | |
eyeZ += 2;// 視点を前へ | |
// カーブ | |
let oX = 0; | |
let dX = 0; | |
// 坂 | |
let oY = 0; | |
let dY = 0; | |
// キャンバスに描画する | |
const start = floor(eyeZ/R_DEPTH) + 1; | |
for(let i=start; i<start+40; i++){ | |
const iA = i % lines.length; | |
const iB = (0<iA) ? iA-1:lines.length-1; | |
const lA = lines[iA]; | |
const lB = lines[iB]; | |
oX += dX; | |
dX += lA.curve;// 次に描画するカーブの差分 | |
oY += dY; | |
dY += lA.bank;// 次に描画するバンクの差分 | |
lA.project(eyeX-oX, eyeY-oY, R_DEPTH*i-eyeZ); | |
if(lB.y < lA.y) continue; | |
let cGrass = (i%2==0) ? "#33dd33":"#33aa33"; | |
let cSide = (i%2==0) ? "#333333":"#ffffff"; | |
let cRoad = (i%2==0) ? "#bbbbbb":"#eeeeee"; | |
drawShape(lA.x, lA.y, width*4, lB.x, lB.y, width*4, cGrass); | |
drawShape(lA.x, lA.y, lA.w*1.2, lB.x, lB.y, lB.w*1.2, cSide); | |
drawShape(lA.x, lA.y, lA.w, lB.x, lB.y, lB.w, cRoad); | |
} | |
} | |
// 2つのラインオブジェクトを使って台形を描く | |
function drawShape(x1, y1, w1, x2, y2, w2, c){ | |
fill(c); noStroke(); | |
beginShape(); | |
vertex(x1-w1/2, y1); | |
vertex(x1+w1/2, y1); | |
vertex(x2+w2/2, y2); | |
vertex(x2-w2/2, y2); | |
endShape(); | |
} | |
// ラインオブジェクト(台形の横線で使う) | |
class MyLine{ | |
constructor(){ | |
this._x = 0; | |
this._y = 0; | |
this._w = 0; | |
this._c = 0; | |
this._b = 0; | |
} | |
project(x, y, z){// 2D空間の座標に変換 | |
const s = SCREEN / z; | |
this._x = x*s + width/2; | |
this._y = y*s + height/2; | |
this._w = R_WIDTH * s; | |
} | |
get x(){return this._x;} | |
get y(){return this._y;} | |
get w(){return this._w;} | |
set curve(n){this._c = n;} | |
get curve(){return this._c;} | |
set bank(n){this._b = n;} | |
get bank(){return this._b;} | |
} | |
function keyPressed() { | |
if(key === "s") saveGif("mySketch", 10); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment