Sha256: 1941a1df41ff5a6c87cb9bfec4fe8c45df9a492fe35309abdc8f27d2825db891
Contents?: true
Size: 485 Bytes
Versions: 15
Compression:
Stored size: 485 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __RAYS_SRC_POLYGON_H__ #define __RAYS_SRC_POLYGON_H__ #include <vector> #include "rays/polygon.h" namespace Rays { class Painter; struct Color; void Polygon_fill ( const Polygon& polygon, Painter* painter, const Color& color); void Polygon_stroke ( const Polygon& polygon, Painter* painter, const Color& color); bool Polygon_triangulate ( Polygon::TrianglePointList* triangles, const Polygon& polygon); }// Rays #endif//EOH
Version data entries
15 entries across 15 versions & 1 rubygems