// -*- c++ -*- #pragma once #ifndef __RAYS_RUBY_POLYGON_H__ #define __RAYS_RUBY_POLYGON_H__ #include #include #include RUCY_DECLARE_VALUE_OR_ARRAY_FROM_TO(Rays::Polygon) namespace Rays { Rucy::Class polygon_class (); // class Rays::Polygon }// Rays namespace Rucy { template <> inline Class get_ruby_class () { return Rays::polygon_class(); } }// Rucy #endif//EOH