From 426b766efbccdd8f5715de9526464db251fac30c Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 23 Jul 2008 15:16:56 +0000 Subject: preparing for fragment rendering --- src/model/quad.cc | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/model/quad.cc (limited to 'src/model/quad.cc') diff --git a/src/model/quad.cc b/src/model/quad.cc new file mode 100644 index 0000000..e216532 --- /dev/null +++ b/src/model/quad.cc @@ -0,0 +1,28 @@ +/* + model/quad.cc + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2 +*/ + +#include "model/quad.h" + +namespace model +{ + +Quad::Quad(math::Vector3f const &v0, math::Vector3f const &v1, math::Vector3f const &v2, math::Vector3f const &v3, + math::Vector3f const &normal, math::Color const &color, bool detail) : + quad_v0(v0), + quad_v1(v1), + quad_v2(v2), + quad_v3(v3), + quad_normal(normal), + quad_color(color) +{ + quad_detail = detail; +} + +Quad::~Quad() +{ +} + +} -- cgit v1.2.3