/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2012 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * ApproximateShapeArea.cpp * * Created on: Jan 30, 2012 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #include "Tesselation/ApproximateShapeArea.hpp" ApproximateShapeArea::ApproximateShapeArea(const Shape &_shape) : shape(_shape) {} ApproximateShapeArea::~ApproximateShapeArea() {} double ApproximateShapeArea::operator()() const { return 0.; }