Thomas Jeffery

Results 2 issues of Thomas Jeffery

[This page](http://www.glfw.org/docs/latest/build_guide.html#build_link_cmake_package) says that you can add the line ```cmake find_package(glfw3 3.2 REQUIRED) ``` to your `CMakeLists.txt`, and be able to build the project using CMake. It does nothing to...

documentation

Take for example this code: ```racket #lang ruckus (let ([ball (sphere 200)] [box (cube 300)]) (difference box ball)) ``` This crashes, since `difference` is given `'()`. Without the call to...