Ray tracing in Nim on WSL
https://nim-lang.org/blog/2020/06/30/ray-tracing-in-nim.html
WSL 上のNim 言語でレイトレースしてみました。
環境
- Windows 10 Insider Preview Build 20161
- WSL2 (Ubuntu 20.04 LTS)
- nim 1.2.4
- WSL2 (Ubuntu 20.04 LTS)
構築
WSL 側
- nim のインストール
$ curl https://nim-lang.org/choosenim/init.sh -sSf | sh
$HOME/.profile export PATH=$HOME/.nimble/bin:$PATH
- clang のインストール
$ sudo apt install clang
利用
Trace of Radiance
https://github.com/mratsim/trace-of-radiance
$ git clone https://github.com/mratsim/trace-of-radiance |
SmallPT
https://github.com/mratsim/weave/tree/master/demos/raytracing
git clone https://github.com/mratsim/weave |
Comment