/* -*- C++ -*- * Copyright ©2004 Hugo Mills * * This software is distributed under the terms of the GNU GPL v3 * For more information on the GPL, see the file COPYING or * visit http://www.gnu.org/ * * This software is distributed without warranty */ #ifndef XFMAP_FLAT_H #define XFMAP_FLAT_H #include "magellan/xfmap.h" class XfMap_Flat : public XfMap { public: virtual ~XfMap_Flat() { } virtual bool f(dvec2&, const dvec3&) const; virtual bool g(dvec3&, const dvec2&) const; static XfMap* parser( ConfigLexer* lex, const std::string& type, const std::string& subtype = "" ); }; #endif