diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-07-07 04:23:13 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-07-07 04:23:13 +0000 |
commit | 14c9cd86e1b7c6ff27c5000d72721c54a718daac (patch) | |
tree | 4c8bc80066d8a495c01258bab7457e031de0a22e /tests/testsxx.cpp | |
parent | 81c84a38992ce8e38106d86ce85ac3e88ed91a31 (diff) | |
download | dimension-14c9cd86e1b7c6ff27c5000d72721c54a718daac.tar.xz |
New 'Dimension::Tests' namespace for libdimensionxx-tests.
Diffstat (limited to 'tests/testsxx.cpp')
-rw-r--r-- | tests/testsxx.cpp | 83 |
1 files changed, 43 insertions, 40 deletions
diff --git a/tests/testsxx.cpp b/tests/testsxx.cpp index 399e50f..f0d5646 100644 --- a/tests/testsxx.cpp +++ b/tests/testsxx.cpp @@ -21,58 +21,61 @@ namespace Dimension { - Scene - default_scene() + namespace Tests { - // Background color - Color background = sRGB(0.0, 0.1, 0.25); - background.filter(0.1); + Scene + default_scene() + { + // Background color + Color background = sRGB(0.0, 0.1, 0.25); + background.filter(0.1); - // Canvas - Canvas canvas(768, 480); + // Canvas + Canvas canvas(768, 480); - // Camera - Perspective_Camera camera( - Matrix::rotation(Vector(0.0, 1.0, 0.0)) - * Matrix::translation(Vector(0.0, 0.0, -4.0)) - * Matrix::scale( - Vector(static_cast<double>(canvas.width())/canvas.height(), 1.0, 1.0) - ) - ); + // Camera + Perspective_Camera camera( + Matrix::rotation(Vector(0.0, 1.0, 0.0)) + * Matrix::translation(Vector(0.0, 0.0, -4.0)) + * Matrix::scale( + Vector(static_cast<double>(canvas.width())/canvas.height(), 1.0, 1.0) + ) + ); - // Scene - Scene scene(background, camera, canvas); + // Scene + Scene scene(background, camera, canvas); - // Objects in scene + // Objects in scene - Sphere sphere; - sphere.trans(inverse(Matrix::scale(Vector(1.25, 1.25, 1.25)))); - scene.push_object(sphere); + Sphere sphere; + sphere.trans(inverse(Matrix::scale(Vector(1.25, 1.25, 1.25)))); + scene.push_object(sphere); - Cube cube; - cube.trans(inverse(Matrix::rotation(Vector(0.75, 0.0, 0.0)))); - scene.push_object(cube); + Cube cube; + cube.trans(inverse(Matrix::rotation(Vector(0.75, 0.0, 0.0)))); + scene.push_object(cube); - return scene; - } + return scene; + } - Display::Display(const Canvas& canvas) - : m_display(dmnsn_new_display(canvas.dmnsn())) - { - if (!m_display) { - throw Dimension_Error("Couldn't create display."); + Display::Display(const Canvas& canvas) + : m_display(dmnsn_new_display(canvas.dmnsn())) + { + if (!m_display) { + throw Dimension_Error("Couldn't create display."); + } } - } - Display::~Display() - { - dmnsn_delete_display(m_display); - } + Display::~Display() + { + dmnsn_delete_display(m_display); + } - void - Display::flush() - { - dmnsn_display_frame(m_display); + void + Display::flush() + { + dmnsn_display_frame(m_display); + } } // Print a progress bar of the progress of `progress' |