You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can currently do something like clip.resize(width=500) instead of clip.fx( vfx.resize, width= 500), but I cannot do clip.rotation(angle=90), I have to do clip.fx( vfx.rotation, angle=90). I think rotation is a sufficiently common operation that it should be implemented.
Also, I think the function should be called rotate not rotation. All the other fx fuctions are named after actions, such as resize, flip, crop, etc.
The text was updated successfully, but these errors were encountered:
Hello,
I can currently do something like
clip.resize(width=500)
instead ofclip.fx( vfx.resize, width= 500)
, but I cannot doclip.rotation(angle=90)
, I have to doclip.fx( vfx.rotation, angle=90)
. I think rotation is a sufficiently common operation that it should be implemented.Also, I think the function should be called
rotate
notrotation
. All the other fx fuctions are named after actions, such asresize
,flip
,crop
, etc.The text was updated successfully, but these errors were encountered: