Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-raheem committed Jun 28, 2020
1 parent 7976030 commit 292daf6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Simple raytracer in [vlang](https://vlang.io), learning the language as I go along so plenty of poor design choices, some for educational purposes. Based on [Ray Tracing in One Weekend](https://github.com/RayTracing/raytracinginoneweekend).

See f64 branch for more precise but slower implementation using 64 bit floats instead of 32bit.

### Current output

![raytrace output](output.png)
Expand Down
Binary file modified bin/raytrace
Binary file not shown.
2 changes: 1 addition & 1 deletion raytrace.v
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ fn random_point_in_sphere() vec3.Vec {
fn main() {
mut fp := flag.new_flag_parser(os.args)
fp.application('raytrace')
fp.version('v0.0.46')
fp.version('f32:v0.0.47')
fp.description('Simple raytracer written in V')
fp.skip_executable()
help := fp.bool('help', 0, false, 'Show this usage information')
Expand Down

0 comments on commit 292daf6

Please sign in to comment.