Metadata-Version: 2.1
Name: pyqt-polygon-window
Version: 0.0.1
Summary: PyQt polygon window
Home-page: https://github.com/yjg30737/pyqt-polygon-window.git
Author: Jung Gyu Yoon
Author-email: yjg30737@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE


# pyqt-polygon-window

PyQt polygon window



## Requirements

PyQt5 >= 5.8



## Setup

`python -m pip install pyqt-polygon-window`



## Included packages

<a href="https://github.com/yjg30737/pyqt-resource-helper.git">pyqt-resource-helper</a>



## Feature

* `setBorderWidth(width: int)`

* `setCornerLength(corner_length: int)`



## Example

Code Sample

```python

from PyQt5.QtWidgets import QApplication

from pyqt_polygon_window import PolygonWindow





if __name__ == "__main__":

    import sys



    app = QApplication(sys.argv)

    pw = PolygonWindow()

    pw.show()

    app.exec_()

```



Result



![image](https://user-images.githubusercontent.com/55078043/149039804-c080d8fc-379e-4ba5-87c2-c64d53308f99.png)







