Disabled external gits

This commit is contained in:
2022-04-07 18:46:57 +02:00
parent 88cb3426ad
commit 15e7120d6d
5316 changed files with 4563444 additions and 6 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,32 @@
<scene>
<!-- Independent sample generator, one sample per pixel -->
<sampler type="independent">
<integer name="sampleCount" value="1"/>
</sampler>
<!-- Render the visible surface normals -->
<integrator type="normals"/>
<!-- Load the Stanford bunny (https://graphics.stanford.edu/data/3Dscanrep/) -->
<mesh type="obj">
<string name="filename" value="bunny.obj"/>
<bsdf type="diffuse"/>
</mesh>
<!-- Render the scene viewed by a perspective camera -->
<camera type="perspective">
<!-- 3D origin, target point, and 'up' vector -->
<transform name="toWorld">
<lookat target="-0.0123771, 0.0540913, -0.239922"
origin="-0.0315182, 0.284011, 0.7331"
up="0.00717446, 0.973206, -0.229822"/>
</transform>
<!-- Field of view: 30 degrees -->
<float name="fov" value="16"/>
<!-- 768 x 768 pixels -->
<integer name="width" value="768"/>
<integer name="height" value="768"/>
</camera>
</scene>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<scene>
<integrator type="normals">
<string name="myProperty" value="Hello!"/>
</integrator>
<camera type="perspective"/>
</scene>