This commit is contained in:
2022-09-08 15:55:14 +02:00
parent 1d26a309e7
commit 0a15899ee6
3 changed files with 84 additions and 12 deletions

View File

@@ -633,6 +633,14 @@ if __name__=='__main__':
obj_info(tr)
o.setTransform(tr)
elif m&Qt.AltModifier:
import matplotlib.pyplot as plt
import numpy as np
x=np.linspace(0.1, 2*np.pi, 41)
y=np.exp(np.sin(x))
plt.stem(x, y)
plt.show()
pass
else:
obj_info(o)