Created
December 4, 2019 06:19
-
-
Save Aeva/663c4c8fe4c5c57f6463cd8534402c06 to your computer and use it in GitHub Desktop.
ray marching comparison
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------------------------------- | |
CASE 1: OLD | |
samples: 2 | |
ray hit: | |
(tx: 1.2360679774997898, sd: -2.220446049250313e-16) | |
error: 0.0 | |
-------------------------------------------------------------------------------- | |
CASE 1: NEW | |
samples: 2 | |
ray hit: | |
(tx: 1.2360679774997898, sd: -2.220446049250313e-16) | |
error: 0.0 | |
-------------------------------------------------------------------------------- | |
CASE 2: OLD | |
samples: 42 | |
ray hit: | |
(tx: 1.9558194385713092, sd: 0.0009754852183714302) | |
error: 0.0009754 | |
-------------------------------------------------------------------------------- | |
CASE 2: NEW | |
samples: 34 | |
ray hit: | |
(tx: 1.9562833889366908, sd: 0.0009551149191757702) | |
error: 0.0009551 | |
-------------------------------------------------------------------------------- | |
CASE 3: OLD | |
samples: 141 | |
ray miss | |
-------------------------------------------------------------------------------- | |
CASE 3: NEW | |
samples: 87 | |
ray miss | |
-------------------------------------------------------------------------------- | |
CASE 4: OLD | |
samples: 275 | |
ray miss | |
-------------------------------------------------------------------------------- | |
CASE 4: NEW | |
samples: 157 | |
ray miss | |
-------------------------------------------------------------------------------- | |
CASE 5: OLD | |
samples: 2 | |
ray hit: | |
(tx: 1.0, sd: 0.0) | |
error: 0.0 | |
-------------------------------------------------------------------------------- | |
CASE 5: NEW | |
samples: 2 | |
ray hit: | |
(tx: 1.0, sd: 0.0) | |
error: 0.0 | |
-------------------------------------------------------------------------------- | |
CASE 6: OLD | |
samples: 4002 | |
ray miss | |
-------------------------------------------------------------------------------- | |
CASE 6: NEW | |
samples: 2047 | |
ray miss | |
-------------------------------------------------------------------------------- | |
CASE 7: OLD | |
samples: 2 | |
ray hit: | |
(tx: 0.0900000000000001, sd: 8.673617379884035e-18) | |
error: 0.0 | |
-------------------------------------------------------------------------------- | |
CASE 7: NEW | |
samples: 4 | |
ray hit: | |
(tx: 0.09000000000000004, sd: 8.673617379884035e-18) | |
error: 0.0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment