UI-For-UWP/Drawing.UWP/DrawingUWP/D2DMultiPolygon.h

29 строки
461 B
C
Исходник Обычный вид История

2016-12-15 17:42:10 +03:00
#pragma once
#include "D2DGeometryShape.h"
#include <collection.h>
namespace Telerik
{
namespace UI
{
namespace Drawing
{
public ref class D2DMultiPolygon sealed : D2DGeometryShape
{
public:
D2DMultiPolygon(void);
void SetPoints(IIterable<IIterable<Point>^>^ points);
internal:
virtual void Populate(ComPtr<ID2D1GeometrySink> sink) override;
private:
std::vector<std::vector<D2D_POINT_2F>> pointsArray;
};
}
}
}