Files
eepp/include/eepp/graphics/circledrawable.hpp
Martí­n Lucas Golini e09b07ecc0 Added ClippingMask class, for clipping with scissor test, clip planes and stencil test.
Fixed some minor problems.

--HG--
branch : dev
2017-03-30 01:17:11 -03:00

18 lines
324 B
C++

#ifndef EE_GRAPHICS_CIRCLEDRAWABLE_HPP
#define EE_GRAPHICS_CIRCLEDRAWABLE_HPP
#include <eepp/graphics/arcdrawable.hpp>
namespace EE { namespace Graphics {
class EE_API CircleDrawable : public ArcDrawable {
public:
CircleDrawable();
CircleDrawable( const Float& radius, const Uint32& segmentsCount );
};
}}
#endif