1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#ifndef VISUAL_CVISUAL_H
#define VISUAL_CVISUAL_H
// Copyright (c) 2000, 2001, 2002, 2003 by David Scherer and others.
// See the file license.txt for complete license terms.
// See the file authors.txt for a complete list of contributors.
#include <boost/python/detail/wrap_python.hpp>
#include <cmath>
#include "platform.h"
#include <boost/python/tuple.hpp>
#include <boost/python/list.hpp>
#include "vector.h"
namespace visual {
#ifdef M_PI
double const pi = M_PI;
# else
double const pi = 3.14159265359;
#endif
} // !namespace visual
#endif // !VISUAL_CVISUAL_H
|