Add an internal Rotate element

This is just a starting point, to be turned into a real Transform
element later, along with syntactic sugar to turn rotation, etc.  into a
transform matrix in the generated output.
This commit is contained in:
Simon Hausmann 2021-02-12 11:15:21 +01:00
parent cb25dce6c9
commit 500919745e
6 changed files with 160 additions and 0 deletions

View file

@ -46,6 +46,7 @@ extern const cbindgen_private::ItemVTable WindowVTable;
extern const cbindgen_private::ItemVTable TextInputVTable;
extern const cbindgen_private::ItemVTable ClipVTable;
extern const cbindgen_private::ItemVTable BoxShadowVTable;
extern const cbindgen_private::ItemVTable RotateVTable;
extern const cbindgen_private::ItemVTable NativeButtonVTable;
extern const cbindgen_private::ItemVTable NativeCheckBoxVTable;
@ -157,6 +158,7 @@ using cbindgen_private::TextInput;
using cbindgen_private::TouchArea;
using cbindgen_private::Window;
using cbindgen_private::BoxShadow;
using cbindgen_private::Rotate;
using cbindgen_private::NativeButton;
using cbindgen_private::NativeCheckBox;