From c19f7101d21353c8278dd9277dbb20a77389272d Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 1 Jul 2009 04:45:40 +0000 Subject: New C++ dmnsn_scene* wrapper and raytracexx test. --- libdimensionxx/dimensionxx/canvas.hpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'libdimensionxx/dimensionxx/canvas.hpp') diff --git a/libdimensionxx/dimensionxx/canvas.hpp b/libdimensionxx/dimensionxx/canvas.hpp index 84787ed..f519fbd 100644 --- a/libdimensionxx/dimensionxx/canvas.hpp +++ b/libdimensionxx/dimensionxx/canvas.hpp @@ -29,16 +29,14 @@ namespace Dimension class Canvas { public: - // Allocate a dmnsn_canvas specified width and height. + // Allocate a dmnsn_canvas of specified width and height Canvas(unsigned int width, unsigned int height); - - // Wrap an existing canvas. - explicit Canvas(dmnsn_canvas* canvas) : m_canvas(canvas) { } - - // Delete the canvas. (dmnsn_delete_canvas(m_canvas).) + // Wrap an existing canvas + explicit Canvas(dmnsn_canvas* canvas); + // Delete the canvas virtual ~Canvas(); - // Get the width and height. + // Get the width and height unsigned int width() const; unsigned int height() const; -- cgit v1.2.3