File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 686
686
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
687
687
#include "aabb.h"
688
688
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
689
+
690
+ class material;
691
+
689
692
...
690
693
691
694
class hittable {
1186
1189
public:
1187
1190
...
1188
1191
1192
+ bool hit(const ray& r, interval ray_t) const {
1193
+ ...
1194
+ }
1195
+
1189
1196
1190
1197
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
1191
1198
int longest_axis() const {
1372
1379
#include "texture.h"
1373
1380
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
1374
1381
1382
+ class hit_record;
1383
+
1375
1384
...
1376
1385
1377
1386
class lambertian : public material {
You can’t perform that action at this time.
0 commit comments