/* * 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. */ /* * ApproximateShapeVolume.cpp * * Created on: Jan 30, 2012 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #include "Tesselation/ApproximateShapeVolume.hpp" ApproximateShapeVolume::ApproximateShapeVolume(const Shape &_shape) : shape(_shape) {} ApproximateShapeVolume::~ApproximateShapeVolume() {} double ApproximateShapeVolume::operator()() const { return 0.; }