Loading [MathJax]/jax/output/HTML-CSS/jax.js

KOTET'S PERSONAL BLOG

#dlang ライブラリ不使用、数百行でレイトレーサを書いて新世界の神になる

Created: , Last modified:
#dlang #tech

これは1年以上前の記事です

ここに書かれている情報、見解は現在のものとは異なっている場合があります。

レイトレーシングという3Dレンダリング手法があります。

レイ トレーシング(ray tracing, 光線追跡法)は、光線などを追跡することで、ある点において観測される像などをシミュレートする手法である。

レイトレーシング - Wikipedia

あるていど物理法則をシミュレートしていて、 その結果それなりにリアルな画像が出てくるというのが仮想的な世界を作っている感じでテンション上がりますよね。 というわけでいつか作ってみたいと思っていました。

tinyraytracer

256行のC++でレイトレーサを書くという学習用リポジトリがあります。 標準ライブラリの機能のみを使いppm形式の画像を出力するレイトレーサを書いています。

ssloy/tinyraytracer: A brief computer graphics / rendering course

それをもとにDで新世界の神になりました。 こんな感じの画像が出てきます。

kotet/tinyraytracer-d: https://github.com/ssloy/tinyraytracer

300行以上に行数が増えてしまっているように見えます。 しかし実は元のtinyraytracerにはgeometry.hというヘッダファイルがあり、 そこでvec3f等のデータ構造が80行以上かけて実装されているのでこちらも厳密には256行ではありません。 なのでセーフです。 セーフです。

この記事はtinyraytracerのコードと Wiki をパッと読んだだけではわからなかったところを補足する計算ノートです。

球との衝突判定

bool ray_intersect(const Vec3f &orig, const Vec3f &dir, float &t0) const {
        Vec3f L = center - orig;
        float tca = L*dir;
        float d2 = L*L - tca*tca;
        if (d2 > radius*radius) return false;
        float thc = sqrtf(radius*radius - d2);
        t0       = tca - thc;
        float t1 = tca + thc;
        if (t0 < 0) t0 = t1;
        if (t0 < 0) return false;
        return true;
    }

t0にはレイの起点から衝突地点までの距離が入ります。


Ldirの角度をθと置く。

tca=Ldir=|L|cosθ

d2=LLtca2 =|L|2|L|2cos2θ =|L|2(1cos2θ) =(|L|sinθ)2



thc=radius2d22


スクリーン座標からの変換

#pragma omp parallel for
for (size_t j = 0; j<height; j++) {
    for (size_t i = 0; i<width; i++) {
        float x =  (2*(i + 0.5)/(float)width  - 1)*tan(fov/2.)*width/(float)height;
        float y = -(2*(j + 0.5)/(float)height - 1)*tan(fov/2.);
        Vec3f dir = Vec3f(x, y, -1).normalize();
        framebuffer[i+j*width] = cast_ray(Vec3f(0,0,0), dir, sphere);
    }
}

1width1<2(i+0.5)width1<11width (0i<width)


反射

Vec3f reflect(const Vec3f &I, const Vec3f &N) {
    return I - N*2.f*(I*N);
}


IN=cosθ


屈折

Vec3f refract(const Vec3f &I, const Vec3f &N, const float &refractive_index) { // Snell's law
    float cosi = - std::max(-1.f, std::min(1.f, I*N));
    float etai = 1, etat = refractive_index;
    Vec3f n = N;
    if (cosi < 0) { // if the ray is inside the object, swap the indices and invert the normal to get the correct result
        cosi = -cosi;
        std::swap(etai, etat); n = -N;
    }
    float eta = etai / etat;
    float k = 1 - eta*eta*(1 - cosi*cosi);
    return k < 0 ? Vec3f(0,0,0) : I*eta + n*(eta * cosi - sqrtf(k));
}


参考: t-pot『Ray Tracing : Reflection & Refraction』

屈折光の向きを表す単位ベクトルをT、水平方向の単位ベクトルをeとおく。

T=Ncost+esint cosi=(IN)

esini=Ncosi+I=cosiN+Iより

T=Ncost+cosiN+Isinisint =Ncost+sintsini(cosiN+I)

スネルの法則 sintsini=etaietat=eta より

T=Ncost+eta(cosiN+I) =N1sin2t+eta(cosiN+I) =N1eta2sin2i+eta(cosiN+I) =N1eta2(1cosi2)+eta(cosiN+I) =Nk+eta(cosiN+I) =I×eta+N(eta×cosik)