Last active
December 23, 2015 16:29
-
-
Save jlisee/6661958 to your computer and use it in GitHub Desktop.
A modified version of Andrew Kensler's business card ray tracer.
This file contains 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
// Creating: | |
// c++ -O3 card.cpp -o card | |
// ./card > beth.ppm | |
// | |
// Rendering the letters EBB | |
// | |
// 1111100111100011110 511774 | |
// 1000000100010010001 264337 | |
// 1000000100010010001 264337 | |
// 1110000111100011110 462622 | |
// 1000000100010010001 264337 | |
// 1000000100010010001 264337 | |
// 1111100111100011110 511774 | |
// | |
// Original by Andrew Kensler: | |
// http://www.cs.utah.edu/~aek/code/card.cpp | |
// | |
// Reference: | |
// http://fabiensanglard.net/rayTracing_back_of_business_card/index.php | |
// | |
// Changes: | |
// * letters: aek -> EBB | |
// * color: red -> green | |
// * size: 512x512 -> 1024x1024 | |
#include <stdlib.h> // card > ebb.ppm | |
#include <stdio.h> | |
#include <math.h> | |
typedef int i;typedef float f;struct v{ | |
f x,y,z;v operator+(v r){return v(x+r.x | |
,y+r.y,z+r.z);}v operator*(f r){return | |
v(x*r,y*r,z*r);}f operator%(v r){return | |
x*r.x+y*r.y+z*r.z;}v(){}v operator^(v r | |
){return v(y*r.z-z*r.y,z*r.x-x*r.z,x*r. | |
y-y*r.x);}v(f a,f b,f c){x=a;y=b;z=c;}v | |
operator!(){return*this*(1/sqrt(*this%* | |
this));}};i G[]={0,0,511774,264337,264337, // Changed 512 to 1024 | |
462622,264337,264337,511774};f R(){ // Changed 512 to 1024 | |
return(f)rand()/RAND_MAX;}i T(v o,v d,f | |
&t,v&n){t=1e9;i m=0;f p=-o.z/d.z;if(.01 | |
<p)t=p,n=v(0,0,1),m=1;for(i k=19;k--;) | |
for(i j=9;j--;)if(G[j]&1<<k){v p=o+v(-k | |
,0,-j-4);f b=p%d,c=p%p-1,q=b*b-c;if(q>0 | |
){f s=-b-sqrt(q);if(s<t&&s>.01)t=s,n=!( | |
p+d*t),m=2;}}return m;}v S(v o,v d){f t | |
;v n;i m=T(o,d,t,n);if(!m)return v(.7, | |
.6,1)*pow(1-d.z,4);v h=o+d*t,l=!(v(9+R( | |
),9+R(),16)+h*-1),r=d+n*(n%d*-2);f b=l% | |
n;if(b<0||T(h,l,t,n))b=0;f p=pow(l%r*(b | |
>0),99);if(m&1){h=h*.2;return((i)(ceil( | |
h.x)+ceil(h.y))&1?v(1,3,1):v(3,3,3))*(b // Changed v(3,1,1) to v(1,3,1) | |
*.2+.1);}return v(p,p,p)+S(h,r)*.5;}i | |
main(){printf("P6 1024 1024 255 ");v g=!v | |
(-6,-16,0),a=!(v(0,0,1)^g)*.002,b=!(g^a | |
)*.002,c=(a+b)*-512+g;for(i y=1024;y--;) // Changed 256 to 512, 512 to 1024 | |
for(i x=1024;x--;){v p(13,13,13);for(i r // Changed 512 to 1024 | |
=64;r--;){v t=a*(R()-.5)*99+b*(R()-.5)* | |
99;p=S(v(17,16,8)+t,!(t*-1+(a*(R()+x)+b | |
*(y+R())+c)*16))*3.5+p;}printf("%c%c%c" | |
,(i)p.x,(i)p.y,(i)p.z);}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment