Jack Thomas

Results 4 comments of Jack Thomas

I also would like to know if there is a good way to draw polar plots. Are there any updates on this issue?

In case anyone comes across this, I was able to draw polar plots using the [Drawing API](https://dearpygui.readthedocs.io/en/latest/documentation/drawing-api.html). I just converted my polar coordinates into cartesian coordinates and drew the polar...

@jmoraispk Unfortunately I cannot share the repository due to being proprietary code, but I can share a polar plot that was generated. ![Screenshot from 2022-08-15 11-05-26](https://user-images.githubusercontent.com/24945922/184690746-caa7b8ae-a81f-4864-8143-ce9a64201407.png)

@jmoraispk Here is some code that draws a simple circle in a polar plot. ``` from dearpygui.dearpygui import * import numpy as np create_context() with window(label="Polar Plot"): with drawlist(width=1000, height=1000):...