Bruno BELANYI
22167a1b93
library: light: add PointLight implementation
2020-03-16 17:45:35 +01:00
Bruno BELANYI
7c8cc0d970
library: shape: add Sphere implementation
2020-03-16 17:29:11 +01:00
Bruno BELANYI
7d28e21a70
library: move from f64 to f32
...
They are faster to compute with, take less space --which means faster
access because we use less cache lines--, and they are what is used by
`bvh`...
2020-03-16 17:26:04 +01:00
Bruno BELANYI
5d03df960c
project: use non-nightly image by default in CI
...
Only use the nightly features for `cargo fmt`. This avoids having the CI
be red because `clippy` is not available for the nightly version that
was used to run it.
2020-03-16 16:36:13 +01:00
Bruno BELANYI
31272bceac
library: core: color: add arithmetic operations
...
The only operations that are not supported right now are term-by-term
division and multiplication between two colors.
I deemed the multiplication and division by a scalar more important than
those operations for the moment.
2020-03-16 16:14:40 +01:00
Bruno BELANYI
708fec536e
project: add derive_more dependency
2020-03-16 16:07:21 +01:00
Bruno BELANYI
924f6bcc3c
library: shape: add Shape trait definition
2020-03-16 15:25:21 +01:00
Bruno BELANYI
6aaf927823
library: add shape module
2020-03-16 15:25:03 +01:00
Bruno BELANYI
30c48ea021
library: light: add SpatialLight trait definition
2020-03-16 15:22:56 +01:00
Bruno BELANYI
20d9103d39
library: light: add Light trait definition
2020-03-16 15:22:56 +01:00
Bruno BELANYI
c0e21d2f66
library: add light module
2020-03-16 15:18:15 +01:00
Bruno BELANYI
b89631adce
library: core: add LinearColor type
2020-03-16 15:16:37 +01:00
Bruno BELANYI
ecde825407
library: add core module
2020-03-16 15:16:20 +01:00
Bruno BELANYI
fe6a58f00e
library: define point and vector type aliases
2020-03-16 15:15:01 +01:00
Bruno BELANYI
ea9120fab3
project: split project into library and executable
2020-03-16 14:57:55 +01:00
Bruno BELANYI
1a3d0ca2a7
project: add BVH dependency
2020-03-16 14:30:38 +01:00
Bruno BELANYI
1eeedf3d7f
project: use nightly in CI
...
The `rustfmt` configuration uses unstable features.
2020-03-08 17:34:17 +01:00
Bruno BELANYI
01c21c352d
gitlab: add minimal CI
2020-03-08 17:27:30 +01:00
Bruno BELANYI
85650d1be2
project: add default formatting configuration
...
This file was obtained by running `rustfmt --print-config default`.
2020-03-08 17:27:30 +01:00
Bruno BELANYI
35626278d1
project: add Cargo project files
...
Those files were generated using `cargo init pathtracer`.
2020-03-08 16:22:44 +01:00