IStitchRectanglePublisher

public interface IStitchRectanglePublisher {

    void put(float x, float y, float width, float height, Color color);

    void putOutline(float x, float y, float width, float height, float thickness, Color color);

    void putVerticalGradient(float x, float y, float width, float height, Color topColor, Color bottomColor);

    void putHorizontalGradient(float x, float y, float width, float height, Color leftColor, Color rightColor);

}

Last updated