-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbindresult1.cpp
5972 lines (5766 loc) · 616 KB
/
bindresult1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*********************************************************
* AUTO GENERATED BINDING CODE - bind.py *
* Please Run bind.py on the source again with different *
* overrides rather than modfying this file directly. *
* Called as: *
* {callstring:50} *
*********************************************************/
#include <pybind11/pybind11.h>
#include <pybind11/numpy.h>
#include <pybind11/operators.h>
#include <memory>
namespace py = pybind11;
// Urho local
#include "String_binding.h"
#include "PtrBinding.h"
#include "PyTrampolines.h"
#include "ContainerBinding.h"
// From the bind call
#include <Urho3D/Urho3DAll.h>
// Patch Urho things (esp. function default values)
typedef Urho3D::String::Iterator Iterator;
typedef Urho3D::Renderer::ShadowMapFilter ShadowMapFilter;
static const auto& RIGHT_FORWARD_UP = Urho3D::RaycastVehicle::RIGHT_FORWARD_UP;
//================================================
//Operator typedefs
//================================================
// These are needed to prevent the compiler disliking the spaces, so we make it a single word
typedef unsigned long long unsignedlonglong;
typedef unsigned int unsignedint;
typedef unsigned short unsignedshort;
typedef unsigned long unsignedlong;
typedef long long longlong;
//================================================
// Declare the holder types shared and weak ptr
//================================================
// TODO: Consider global hashmap of pointers for external pointer, then we could mark it as safe from raw ptr.
PYBIND11_DECLARE_HOLDER_TYPE(T, Urho3D::ExternalPtr<T>, false);
PYBIND11_DECLARE_HOLDER_TYPE(T, Urho3D::SharedPtr<T>, true);
PYBIND11_DECLARE_HOLDER_TYPE(T, Urho3D::WeakPtr<T>, true);
//================================================
// Implement Classes
//================================================
// Next binding:
void Implement_Class_Bindings_2(py::module& m);
// Current binding:
void Implement_Class_Bindings_1(py::module& m)
{
py::module& pyclass_Var_Urho3D = m;
// Type Urho3D::HashBase Registrations
auto pyclass_Var_Urho3D_HashBase = py::class_<Urho3D::HashBase, Urho3D::ExternalPtr<Urho3D::HashBase>>(pyclass_Var_Urho3D, "HashBase", "test doc");
// Type Urho3D::WString Registrations
auto pyclass_Var_Urho3D_WString = py::class_<Urho3D::WString, Urho3D::ExternalPtr<Urho3D::WString>>(pyclass_Var_Urho3D, "WString", "test doc");
// Type Urho3D::StringHashRegister Registrations
auto pyclass_Var_Urho3D_StringHashRegister = py::class_<Urho3D::StringHashRegister, Urho3D::ExternalPtr<Urho3D::StringHashRegister>>(pyclass_Var_Urho3D, "StringHashRegister", "test doc");
// Type Urho3D::StringFactory Registrations
auto pyclass_Var_Urho3D_StringFactory = py::class_<Urho3D::StringFactory, Urho3D::ExternalPtr<Urho3D::StringFactory>>(pyclass_Var_Urho3D, "StringFactory", "test doc");
// Type Urho3D::MutexLock Registrations
auto pyclass_Var_Urho3D_MutexLock = py::class_<Urho3D::MutexLock, Urho3D::ExternalPtr<Urho3D::MutexLock>>(pyclass_Var_Urho3D, "MutexLock", "test doc");
// Type Urho3D::RefCounted Registrations
auto pyclass_Var_Urho3D_RefCounted = py::class_<Urho3D::RefCounted, Urho3D::SharedPtr<Urho3D::RefCounted>>(pyclass_Var_Urho3D, "RefCounted", "test doc");
// Type Urho3D::Vector2 Registrations
auto pyclass_Var_Urho3D_Vector2 = py::class_<Urho3D::Vector2, Urho3D::ExternalPtr<Urho3D::Vector2>>(pyclass_Var_Urho3D, "Vector2", "test doc");
// Type Urho3D::Vector3 Registrations
auto pyclass_Var_Urho3D_Vector3 = py::class_<Urho3D::Vector3, Urho3D::ExternalPtr<Urho3D::Vector3>>(pyclass_Var_Urho3D, "Vector3", "test doc");
// Type Urho3D::Color Registrations
auto pyclass_Var_Urho3D_Color = py::class_<Urho3D::Color, Urho3D::ExternalPtr<Urho3D::Color>>(pyclass_Var_Urho3D, "Color", "test doc");
// Type Urho3D::Quaternion Registrations
auto pyclass_Var_Urho3D_Quaternion = py::class_<Urho3D::Quaternion, Urho3D::ExternalPtr<Urho3D::Quaternion>>(pyclass_Var_Urho3D, "Quaternion", "test doc");
// Type Urho3D::Matrix4 Registrations
auto pyclass_Var_Urho3D_Matrix4 = py::class_<Urho3D::Matrix4, Urho3D::ExternalPtr<Urho3D::Matrix4>>(pyclass_Var_Urho3D, "Matrix4", "test doc");
// Type Urho3D::IntRect Registrations
auto pyclass_Var_Urho3D_IntRect = py::class_<Urho3D::IntRect, Urho3D::ExternalPtr<Urho3D::IntRect>>(pyclass_Var_Urho3D, "IntRect", "test doc");
// Type Urho3D::ResourceRef Registrations
auto pyclass_Var_Urho3D_ResourceRef = py::class_<Urho3D::ResourceRef, Urho3D::ExternalPtr<Urho3D::ResourceRef>>(pyclass_Var_Urho3D, "ResourceRef", "test doc");
// Type Urho3D::Context Registrations
auto pyclass_Var_Urho3D_Context = py::class_<Urho3D::Context, Urho3D::SharedPtr<Urho3D::Context>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "Context", "test doc");
// Type Urho3D::TypeInfo Registrations
auto pyclass_Var_Urho3D_TypeInfo = py::class_<Urho3D::TypeInfo, Urho3D::ExternalPtr<Urho3D::TypeInfo>>(pyclass_Var_Urho3D, "TypeInfo", "test doc");
// Type Urho3D::ObjectFactory Registrations
auto pyclass_Var_Urho3D_ObjectFactory = py::class_<Urho3D::ObjectFactory, Urho3D::SharedPtr<Urho3D::ObjectFactory>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "ObjectFactory", "test doc");
// Type Urho3D::ScriptEventListener Registrations
auto pyclass_Var_Urho3D_ScriptEventListener = py::class_<Urho3D::ScriptEventListener, Urho3D::ExternalPtr<Urho3D::ScriptEventListener>>(pyclass_Var_Urho3D, "ScriptEventListener", "test doc");
// Type Urho3D::AttributeAccessor Registrations
auto pyclass_Var_Urho3D_AttributeAccessor = py::class_<Urho3D::AttributeAccessor, Urho3D::SharedPtr<Urho3D::AttributeAccessor>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "AttributeAccessor", "test doc");
// Type Urho3D::Deserializer Registrations
auto pyclass_Var_Urho3D_Deserializer = py::class_<Urho3D::Deserializer, Urho3D::ExternalPtr<Urho3D::Deserializer>>(pyclass_Var_Urho3D, "Deserializer", "test doc");
// Type Urho3D::XMLElement Registrations
auto pyclass_Var_Urho3D_XMLElement = py::class_<Urho3D::XMLElement, Urho3D::ExternalPtr<Urho3D::XMLElement>>(pyclass_Var_Urho3D, "XMLElement", "test doc");
// Type Urho3D::DirtyBits Registrations
auto pyclass_Var_Urho3D_DirtyBits = py::class_<Urho3D::DirtyBits, Urho3D::ExternalPtr<Urho3D::DirtyBits>>(pyclass_Var_Urho3D, "DirtyBits", "test doc");
// Type Urho3D::ReplicationState Registrations
auto pyclass_Var_Urho3D_ReplicationState = py::class_<Urho3D::ReplicationState, Urho3D::ExternalPtr<Urho3D::ReplicationState>>(pyclass_Var_Urho3D, "ReplicationState", "test doc");
// Type Urho3D::ValueAnimationInfo Registrations
auto pyclass_Var_Urho3D_ValueAnimationInfo = py::class_<Urho3D::ValueAnimationInfo, Urho3D::SharedPtr<Urho3D::ValueAnimationInfo>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "ValueAnimationInfo", "test doc");
// Type Urho3D::ComponentReplicationState Registrations
auto pyclass_Var_Urho3D_ComponentReplicationState = py::class_<Urho3D::ComponentReplicationState, Urho3D::ExternalPtr<Urho3D::ComponentReplicationState>, Urho3D::ReplicationState>(pyclass_Var_Urho3D, "ComponentReplicationState", "test doc");
// Type Urho3D::SoundStream Registrations
auto pyclass_Var_Urho3D_SoundStream = py::class_<Urho3D::SoundStream, Urho3D::SharedPtr<Urho3D::SoundStream>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "SoundStream", "test doc");
// Type Urho3D::EventReceiverGroup Registrations
auto pyclass_Var_Urho3D_EventReceiverGroup = py::class_<Urho3D::EventReceiverGroup, Urho3D::SharedPtr<Urho3D::EventReceiverGroup>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "EventReceiverGroup", "test doc");
// Type Urho3D::Polyhedron Registrations
auto pyclass_Var_Urho3D_Polyhedron = py::class_<Urho3D::Polyhedron, Urho3D::ExternalPtr<Urho3D::Polyhedron>>(pyclass_Var_Urho3D, "Polyhedron", "test doc");
// Type Urho3D::Sphere Registrations
auto pyclass_Var_Urho3D_Sphere = py::class_<Urho3D::Sphere, Urho3D::ExternalPtr<Urho3D::Sphere>>(pyclass_Var_Urho3D, "Sphere", "test doc");
// Type Urho3D::Octant Registrations
auto pyclass_Var_Urho3D_Octant = py::class_<Urho3D::Octant, Urho3D::ExternalPtr<Urho3D::Octant>>(pyclass_Var_Urho3D, "Octant", "test doc");
// Type Urho3D::RayQueryResult Registrations
auto pyclass_Var_Urho3D_RayQueryResult = py::class_<Urho3D::RayQueryResult, Urho3D::ExternalPtr<Urho3D::RayQueryResult>>(pyclass_Var_Urho3D, "RayQueryResult", "test doc");
// Type Urho3D::GPUObject Registrations
auto pyclass_Var_Urho3D_GPUObject = py::class_<Urho3D::GPUObject, Urho3D::ExternalPtr<Urho3D::GPUObject>>(pyclass_Var_Urho3D, "GPUObject", "test doc");
// Type Urho3D::HiresTimer Registrations
auto pyclass_Var_Urho3D_HiresTimer = py::class_<Urho3D::HiresTimer, Urho3D::ExternalPtr<Urho3D::HiresTimer>>(pyclass_Var_Urho3D, "HiresTimer", "test doc");
// Type Urho3D::SceneResolver Registrations
auto pyclass_Var_Urho3D_SceneResolver = py::class_<Urho3D::SceneResolver, Urho3D::ExternalPtr<Urho3D::SceneResolver>>(pyclass_Var_Urho3D, "SceneResolver", "test doc");
// Type Urho3D::NodeImpl Registrations
auto pyclass_Var_Urho3D_NodeImpl = py::class_<Urho3D::NodeImpl, Urho3D::ExternalPtr<Urho3D::NodeImpl>>(pyclass_Var_Urho3D, "NodeImpl", "test doc");
// Type Urho3D::XPathResultSet Registrations
auto pyclass_Var_Urho3D_XPathResultSet = py::class_<Urho3D::XPathResultSet, Urho3D::ExternalPtr<Urho3D::XPathResultSet>>(pyclass_Var_Urho3D, "XPathResultSet", "test doc");
// Type Urho3D::BiasParameters Registrations
auto pyclass_Var_Urho3D_BiasParameters = py::class_<Urho3D::BiasParameters, Urho3D::ExternalPtr<Urho3D::BiasParameters>>(pyclass_Var_Urho3D, "BiasParameters", "test doc");
// Type Urho3D::FocusParameters Registrations
auto pyclass_Var_Urho3D_FocusParameters = py::class_<Urho3D::FocusParameters, Urho3D::ExternalPtr<Urho3D::FocusParameters>>(pyclass_Var_Urho3D, "FocusParameters", "test doc");
// Type Urho3D::UIBatch Registrations
auto pyclass_Var_Urho3D_UIBatch = py::class_<Urho3D::UIBatch, Urho3D::ExternalPtr<Urho3D::UIBatch>>(pyclass_Var_Urho3D, "UIBatch", "test doc");
// Type Urho3D::BufferedSoundStream Registrations
auto pyclass_Var_Urho3D_BufferedSoundStream = py::class_<Urho3D::BufferedSoundStream, Urho3D::SharedPtr<Urho3D::BufferedSoundStream>, Urho3D::SoundStream>(pyclass_Var_Urho3D, "BufferedSoundStream", "test doc");
// Type Urho3D::Condition Registrations
auto pyclass_Var_Urho3D_Condition = py::class_<Urho3D::Condition, Urho3D::ExternalPtr<Urho3D::Condition>>(pyclass_Var_Urho3D, "Condition", "test doc");
// Type Urho3D::ProfilerBlock Registrations
auto pyclass_Var_Urho3D_ProfilerBlock = py::class_<Urho3D::ProfilerBlock, Urho3D::ExternalPtr<Urho3D::ProfilerBlock>>(pyclass_Var_Urho3D, "ProfilerBlock", "test doc");
// Type Urho3D::AutoProfileBlock Registrations
auto pyclass_Var_Urho3D_AutoProfileBlock = py::class_<Urho3D::AutoProfileBlock, Urho3D::ExternalPtr<Urho3D::AutoProfileBlock>>(pyclass_Var_Urho3D, "AutoProfileBlock", "test doc");
// Type Urho3D::Spline Registrations
auto pyclass_Var_Urho3D_Spline = py::class_<Urho3D::Spline, Urho3D::ExternalPtr<Urho3D::Spline>>(pyclass_Var_Urho3D, "Spline", "test doc");
// Type Urho3D::Skeleton Registrations
auto pyclass_Var_Urho3D_Skeleton = py::class_<Urho3D::Skeleton, Urho3D::ExternalPtr<Urho3D::Skeleton>>(pyclass_Var_Urho3D, "Skeleton", "test doc");
// Type Urho3D::AnimationState Registrations
auto pyclass_Var_Urho3D_AnimationState = py::class_<Urho3D::AnimationState, Urho3D::SharedPtr<Urho3D::AnimationState>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "AnimationState", "test doc");
// Type Urho3D::AnimationTrack Registrations
auto pyclass_Var_Urho3D_AnimationTrack = py::class_<Urho3D::AnimationTrack, Urho3D::ExternalPtr<Urho3D::AnimationTrack>>(pyclass_Var_Urho3D, "AnimationTrack", "test doc");
// Type Urho3D::ShaderVariation Registrations
auto pyclass_Var_Urho3D_ShaderVariation = py::class_<Urho3D::ShaderVariation, Urho3D::SharedPtr<Urho3D::ShaderVariation>, Urho3D::RefCounted, Urho3D::GPUObject>(pyclass_Var_Urho3D, "ShaderVariation", "test doc");
// Type Urho3D::Billboard Registrations
auto pyclass_Var_Urho3D_Billboard = py::class_<Urho3D::Billboard, Urho3D::ExternalPtr<Urho3D::Billboard>>(pyclass_Var_Urho3D, "Billboard", "test doc");
// Type Urho3D::Ray Registrations
auto pyclass_Var_Urho3D_Ray = py::class_<Urho3D::Ray, Urho3D::ExternalPtr<Urho3D::Ray>>(pyclass_Var_Urho3D, "Ray", "test doc");
// Type Urho3D::RenderSurface Registrations
auto pyclass_Var_Urho3D_RenderSurface = py::class_<Urho3D::RenderSurface, Urho3D::SharedPtr<Urho3D::RenderSurface>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "RenderSurface", "test doc");
// Type Urho3D::ShaderProgram Registrations
auto pyclass_Var_Urho3D_ShaderProgram = py::class_<Urho3D::ShaderProgram, Urho3D::SharedPtr<Urho3D::ShaderProgram>, Urho3D::RefCounted, Urho3D::GPUObject>(pyclass_Var_Urho3D, "ShaderProgram", "test doc");
// Type Urho3D::OctreeQuery Registrations
auto pyclass_Var_Urho3D_OctreeQuery = py::class_<Urho3D::OctreeQuery, Urho3D::ExternalPtr<Urho3D::OctreeQuery>>(pyclass_Var_Urho3D, "OctreeQuery", "test doc");
// Type Urho3D::SphereOctreeQuery Registrations
auto pyclass_Var_Urho3D_SphereOctreeQuery = py::class_<Urho3D::SphereOctreeQuery, Urho3D::ExternalPtr<Urho3D::SphereOctreeQuery>, Urho3D::OctreeQuery>(pyclass_Var_Urho3D, "SphereOctreeQuery", "test doc");
// Type Urho3D::FrustumOctreeQuery Registrations
auto pyclass_Var_Urho3D_FrustumOctreeQuery = py::class_<Urho3D::FrustumOctreeQuery, Urho3D::ExternalPtr<Urho3D::FrustumOctreeQuery>, Urho3D::OctreeQuery>(pyclass_Var_Urho3D, "FrustumOctreeQuery", "test doc");
// Type Urho3D::AllContentOctreeQuery Registrations
auto pyclass_Var_Urho3D_AllContentOctreeQuery = py::class_<Urho3D::AllContentOctreeQuery, Urho3D::ExternalPtr<Urho3D::AllContentOctreeQuery>, Urho3D::OctreeQuery>(pyclass_Var_Urho3D, "AllContentOctreeQuery", "test doc");
// Type Urho3D::RenderTargetInfo Registrations
auto pyclass_Var_Urho3D_RenderTargetInfo = py::class_<Urho3D::RenderTargetInfo, Urho3D::ExternalPtr<Urho3D::RenderTargetInfo>>(pyclass_Var_Urho3D, "RenderTargetInfo", "test doc");
// Type Urho3D::RenderPath Registrations
auto pyclass_Var_Urho3D_RenderPath = py::class_<Urho3D::RenderPath, Urho3D::SharedPtr<Urho3D::RenderPath>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "RenderPath", "test doc");
// Type Urho3D::TrailPoint Registrations
auto pyclass_Var_Urho3D_TrailPoint = py::class_<Urho3D::TrailPoint, Urho3D::ExternalPtr<Urho3D::TrailPoint>>(pyclass_Var_Urho3D, "TrailPoint", "test doc");
// Type Urho3D::Controls Registrations
auto pyclass_Var_Urho3D_Controls = py::class_<Urho3D::Controls, Urho3D::ExternalPtr<Urho3D::Controls>>(pyclass_Var_Urho3D, "Controls", "test doc");
// Type Urho3D::LuaFunction Registrations
auto pyclass_Var_Urho3D_LuaFunction = py::class_<Urho3D::LuaFunction, Urho3D::SharedPtr<Urho3D::LuaFunction>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "LuaFunction", "test doc");
// Type Urho3D::AreaAllocator Registrations
auto pyclass_Var_Urho3D_AreaAllocator = py::class_<Urho3D::AreaAllocator, Urho3D::ExternalPtr<Urho3D::AreaAllocator>>(pyclass_Var_Urho3D, "AreaAllocator", "test doc");
// Type Urho3D::NavBuildData Registrations
auto pyclass_Var_Urho3D_NavBuildData = py::class_<Urho3D::NavBuildData, Urho3D::ExternalPtr<Urho3D::NavBuildData>>(pyclass_Var_Urho3D, "NavBuildData", "test doc");
// Type Urho3D::NavAreaStub Registrations
auto pyclass_Var_Urho3D_NavAreaStub = py::class_<Urho3D::NavAreaStub, Urho3D::ExternalPtr<Urho3D::NavAreaStub>>(pyclass_Var_Urho3D, "NavAreaStub", "test doc");
// Type Urho3D::SceneReplicationState Registrations
auto pyclass_Var_Urho3D_SceneReplicationState = py::class_<Urho3D::SceneReplicationState, Urho3D::ExternalPtr<Urho3D::SceneReplicationState>, Urho3D::ReplicationState>(pyclass_Var_Urho3D, "SceneReplicationState", "test doc");
// Type Urho3D::PhysicsRaycastResult Registrations
auto pyclass_Var_Urho3D_PhysicsRaycastResult = py::class_<Urho3D::PhysicsRaycastResult, Urho3D::ExternalPtr<Urho3D::PhysicsRaycastResult>>(pyclass_Var_Urho3D, "PhysicsRaycastResult", "test doc");
// Type Urho3D::PListValue Registrations
auto pyclass_Var_Urho3D_PListValue = py::class_<Urho3D::PListValue, Urho3D::ExternalPtr<Urho3D::PListValue>>(pyclass_Var_Urho3D, "PListValue", "test doc");
// Type Urho3D::FontFace Registrations
auto pyclass_Var_Urho3D_FontFace = py::class_<Urho3D::FontFace, Urho3D::SharedPtr<Urho3D::FontFace>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "FontFace", "test doc");
// Type Urho3D::FontFaceBitmap Registrations
auto pyclass_Var_Urho3D_FontFaceBitmap = py::class_<Urho3D::FontFaceBitmap, Urho3D::SharedPtr<Urho3D::FontFaceBitmap>, Urho3D::FontFace>(pyclass_Var_Urho3D, "FontFaceBitmap", "test doc");
// Type Urho3D::PhysicsRaycastResult2D Registrations
auto pyclass_Var_Urho3D_PhysicsRaycastResult2D = py::class_<Urho3D::PhysicsRaycastResult2D, Urho3D::ExternalPtr<Urho3D::PhysicsRaycastResult2D>>(pyclass_Var_Urho3D, "PhysicsRaycastResult2D", "test doc");
// Type Urho3D::TileMapInfo2D Registrations
auto pyclass_Var_Urho3D_TileMapInfo2D = py::class_<Urho3D::TileMapInfo2D, Urho3D::ExternalPtr<Urho3D::TileMapInfo2D>>(pyclass_Var_Urho3D, "TileMapInfo2D", "test doc");
// Type Urho3D::Tile2D Registrations
auto pyclass_Var_Urho3D_Tile2D = py::class_<Urho3D::Tile2D, Urho3D::SharedPtr<Urho3D::Tile2D>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "Tile2D", "test doc");
// Type Urho3D::ListBase Registrations
auto pyclass_Var_Urho3D_ListBase = py::class_<Urho3D::ListBase, Urho3D::ExternalPtr<Urho3D::ListBase>>(pyclass_Var_Urho3D, "ListBase", "test doc");
// Type Urho3D::StringHash Registrations
auto pyclass_Var_Urho3D_StringHash = py::class_<Urho3D::StringHash, Urho3D::ExternalPtr<Urho3D::StringHash>>(pyclass_Var_Urho3D, "StringHash", "test doc");
// Type Urho3D::Mutex Registrations
auto pyclass_Var_Urho3D_Mutex = py::class_<Urho3D::Mutex, Urho3D::ExternalPtr<Urho3D::Mutex>>(pyclass_Var_Urho3D, "Mutex", "test doc");
// Type Urho3D::IntVector2 Registrations
auto pyclass_Var_Urho3D_IntVector2 = py::class_<Urho3D::IntVector2, Urho3D::ExternalPtr<Urho3D::IntVector2>>(pyclass_Var_Urho3D, "IntVector2", "test doc");
// Type Urho3D::Vector4 Registrations
auto pyclass_Var_Urho3D_Vector4 = py::class_<Urho3D::Vector4, Urho3D::ExternalPtr<Urho3D::Vector4>>(pyclass_Var_Urho3D, "Vector4", "test doc");
// Type Urho3D::Matrix3x4 Registrations
auto pyclass_Var_Urho3D_Matrix3x4 = py::class_<Urho3D::Matrix3x4, Urho3D::ExternalPtr<Urho3D::Matrix3x4>>(pyclass_Var_Urho3D, "Matrix3x4", "test doc");
// Type Urho3D::Variant Registrations
auto pyclass_Var_Urho3D_Variant = py::class_<Urho3D::Variant, Urho3D::ExternalPtr<Urho3D::Variant>>(pyclass_Var_Urho3D, "Variant", "test doc");
// Type Urho3D::ResourceRefList Registrations
auto pyclass_Var_Urho3D_ResourceRefList = py::class_<Urho3D::ResourceRefList, Urho3D::ExternalPtr<Urho3D::ResourceRefList>>(pyclass_Var_Urho3D, "ResourceRefList", "test doc");
// Type Urho3D::Object Registrations
auto pyclass_Var_Urho3D_Object = py::class_<Urho3D::Object, Urho3D::SharedPtr<Urho3D::Object>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "Object", "test doc");
// Type Urho3D::Script Registrations
auto pyclass_Var_Urho3D_Script = py::class_<Urho3D::Script, Urho3D::SharedPtr<Urho3D::Script>, Urho3D::Object>(pyclass_Var_Urho3D, "Script", "test doc");
// Type Urho3D::Connection Registrations
auto pyclass_Var_Urho3D_Connection = py::class_<Urho3D::Connection, Urho3D::SharedPtr<Urho3D::Connection>, Urho3D::Object>(pyclass_Var_Urho3D, "Connection", "test doc");
// Type Urho3D::JSONValue Registrations
auto pyclass_Var_Urho3D_JSONValue = py::class_<Urho3D::JSONValue, Urho3D::ExternalPtr<Urho3D::JSONValue>>(pyclass_Var_Urho3D, "JSONValue", "test doc");
// Type Urho3D::Audio Registrations
auto pyclass_Var_Urho3D_Audio = py::class_<Urho3D::Audio, Urho3D::SharedPtr<Urho3D::Audio>, Urho3D::Object>(pyclass_Var_Urho3D, "Audio", "test doc");
// Type Urho3D::VertexElement Registrations
auto pyclass_Var_Urho3D_VertexElement = py::class_<Urho3D::VertexElement, Urho3D::ExternalPtr<Urho3D::VertexElement>>(pyclass_Var_Urho3D, "VertexElement", "test doc");
// Type Urho3D::BoundingBox Registrations
auto pyclass_Var_Urho3D_BoundingBox = py::class_<Urho3D::BoundingBox, Urho3D::ExternalPtr<Urho3D::BoundingBox>>(pyclass_Var_Urho3D, "BoundingBox", "test doc");
// Type Urho3D::Geometry Registrations
auto pyclass_Var_Urho3D_Geometry = py::class_<Urho3D::Geometry, Urho3D::SharedPtr<Urho3D::Geometry>, Urho3D::Object>(pyclass_Var_Urho3D, "Geometry", "test doc");
// Type Urho3D::OcclusionBuffer Registrations
auto pyclass_Var_Urho3D_OcclusionBuffer = py::class_<Urho3D::OcclusionBuffer, Urho3D::SharedPtr<Urho3D::OcclusionBuffer>, Urho3D::Object>(pyclass_Var_Urho3D, "OcclusionBuffer", "test doc");
// Type Urho3D::SourceBatch Registrations
auto pyclass_Var_Urho3D_SourceBatch = py::class_<Urho3D::SourceBatch, Urho3D::ExternalPtr<Urho3D::SourceBatch>>(pyclass_Var_Urho3D, "SourceBatch", "test doc");
// Type Urho3D::Graphics Registrations
auto pyclass_Var_Urho3D_Graphics = py::class_<Urho3D::Graphics, Urho3D::SharedPtr<Urho3D::Graphics>, Urho3D::Object>(pyclass_Var_Urho3D, "Graphics", "test doc");
// Type Urho3D::Time Registrations
auto pyclass_Var_Urho3D_Time = py::class_<Urho3D::Time, Urho3D::SharedPtr<Urho3D::Time>, Urho3D::Object>(pyclass_Var_Urho3D, "Time", "test doc");
// Type Urho3D::PackageFile Registrations
auto pyclass_Var_Urho3D_PackageFile = py::class_<Urho3D::PackageFile, Urho3D::SharedPtr<Urho3D::PackageFile>, Urho3D::Object>(pyclass_Var_Urho3D, "PackageFile", "test doc");
// Type Urho3D::NodeReplicationState Registrations
auto pyclass_Var_Urho3D_NodeReplicationState = py::class_<Urho3D::NodeReplicationState, Urho3D::ExternalPtr<Urho3D::NodeReplicationState>, Urho3D::ReplicationState>(pyclass_Var_Urho3D, "NodeReplicationState", "test doc");
// Type Urho3D::Plane Registrations
auto pyclass_Var_Urho3D_Plane = py::class_<Urho3D::Plane, Urho3D::ExternalPtr<Urho3D::Plane>>(pyclass_Var_Urho3D, "Plane", "test doc");
// Type Urho3D::Pass Registrations
auto pyclass_Var_Urho3D_Pass = py::class_<Urho3D::Pass, Urho3D::SharedPtr<Urho3D::Pass>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "Pass", "test doc");
// Type Urho3D::ResourceCache Registrations
auto pyclass_Var_Urho3D_ResourceCache = py::class_<Urho3D::ResourceCache, Urho3D::SharedPtr<Urho3D::ResourceCache>, Urho3D::Object>(pyclass_Var_Urho3D, "ResourceCache", "test doc");
// Type Urho3D::ScriptEventInvoker Registrations
auto pyclass_Var_Urho3D_ScriptEventInvoker = py::class_<Urho3D::ScriptEventInvoker, Urho3D::SharedPtr<Urho3D::ScriptEventInvoker>, Urho3D::Object>(pyclass_Var_Urho3D, "ScriptEventInvoker", "test doc");
// Type Urho3D::OggVorbisSoundStream Registrations
auto pyclass_Var_Urho3D_OggVorbisSoundStream = py::class_<Urho3D::OggVorbisSoundStream, Urho3D::SharedPtr<Urho3D::OggVorbisSoundStream>, Urho3D::SoundStream>(pyclass_Var_Urho3D, "OggVorbisSoundStream", "test doc");
// Type Urho3D::Thread Registrations
auto pyclass_Var_Urho3D_Thread = py::class_<Urho3D::Thread, Urho3D::ExternalPtr<Urho3D::Thread>>(pyclass_Var_Urho3D, "Thread", "test doc");
// Type Urho3D::EventProfilerBlock Registrations
auto pyclass_Var_Urho3D_EventProfilerBlock = py::class_<Urho3D::EventProfilerBlock, Urho3D::ExternalPtr<Urho3D::EventProfilerBlock>, Urho3D::ProfilerBlock>(pyclass_Var_Urho3D, "EventProfilerBlock", "test doc");
// Type Urho3D::WorkQueue Registrations
auto pyclass_Var_Urho3D_WorkQueue = py::class_<Urho3D::WorkQueue, Urho3D::SharedPtr<Urho3D::WorkQueue>, Urho3D::Object>(pyclass_Var_Urho3D, "WorkQueue", "test doc");
// Type Urho3D::DebugHud Registrations
auto pyclass_Var_Urho3D_DebugHud = py::class_<Urho3D::DebugHud, Urho3D::SharedPtr<Urho3D::DebugHud>, Urho3D::Object>(pyclass_Var_Urho3D, "DebugHud", "test doc");
// Type Urho3D::Application Registrations
auto pyclass_Var_Urho3D_Application = py::class_<Urho3D::Application, PyApplication, Urho3D::SharedPtr<Urho3D::Application>, Urho3D::Object>(pyclass_Var_Urho3D, "Application", "test doc");
// Type Urho3D::IndexBuffer Registrations
auto pyclass_Var_Urho3D_IndexBuffer = py::class_<Urho3D::IndexBuffer, Urho3D::SharedPtr<Urho3D::IndexBuffer>, Urho3D::Object, Urho3D::GPUObject>(pyclass_Var_Urho3D, "IndexBuffer", "test doc");
// Type Urho3D::AnimationControl Registrations
auto pyclass_Var_Urho3D_AnimationControl = py::class_<Urho3D::AnimationControl, Urho3D::ExternalPtr<Urho3D::AnimationControl>>(pyclass_Var_Urho3D, "AnimationControl", "test doc");
// Type Urho3D::View Registrations
auto pyclass_Var_Urho3D_View = py::class_<Urho3D::View, Urho3D::SharedPtr<Urho3D::View>, Urho3D::Object>(pyclass_Var_Urho3D, "View", "test doc");
// Type Urho3D::ConstantBuffer Registrations
auto pyclass_Var_Urho3D_ConstantBuffer = py::class_<Urho3D::ConstantBuffer, Urho3D::SharedPtr<Urho3D::ConstantBuffer>, Urho3D::Object, Urho3D::GPUObject>(pyclass_Var_Urho3D, "ConstantBuffer", "test doc");
// Type Urho3D::Renderer Registrations
auto pyclass_Var_Urho3D_Renderer = py::class_<Urho3D::Renderer, Urho3D::SharedPtr<Urho3D::Renderer>, Urho3D::Object>(pyclass_Var_Urho3D, "Renderer", "test doc");
// Type Urho3D::ShaderPrecache Registrations
auto pyclass_Var_Urho3D_ShaderPrecache = py::class_<Urho3D::ShaderPrecache, Urho3D::SharedPtr<Urho3D::ShaderPrecache>, Urho3D::Object>(pyclass_Var_Urho3D, "ShaderPrecache", "test doc");
// Type Urho3D::PointOctreeQuery Registrations
auto pyclass_Var_Urho3D_PointOctreeQuery = py::class_<Urho3D::PointOctreeQuery, Urho3D::ExternalPtr<Urho3D::PointOctreeQuery>, Urho3D::OctreeQuery>(pyclass_Var_Urho3D, "PointOctreeQuery", "test doc");
// Type Urho3D::OctreeQueryResult Registrations
auto pyclass_Var_Urho3D_OctreeQueryResult = py::class_<Urho3D::OctreeQueryResult, Urho3D::ExternalPtr<Urho3D::OctreeQueryResult>>(pyclass_Var_Urho3D, "OctreeQueryResult", "test doc");
// Type Urho3D::RenderPathCommand Registrations
auto pyclass_Var_Urho3D_RenderPathCommand = py::class_<Urho3D::RenderPathCommand, Urho3D::ExternalPtr<Urho3D::RenderPathCommand>>(pyclass_Var_Urho3D, "RenderPathCommand", "test doc");
// Type Urho3D::FileSystem Registrations
auto pyclass_Var_Urho3D_FileSystem = py::class_<Urho3D::FileSystem, Urho3D::SharedPtr<Urho3D::FileSystem>, Urho3D::Object>(pyclass_Var_Urho3D, "FileSystem", "test doc");
// Type Urho3D::CursorShapeInfo Registrations
auto pyclass_Var_Urho3D_CursorShapeInfo = py::class_<Urho3D::CursorShapeInfo, Urho3D::ExternalPtr<Urho3D::CursorShapeInfo>>(pyclass_Var_Urho3D, "CursorShapeInfo", "test doc");
// Type Urho3D::LuaScriptEventListener Registrations
auto pyclass_Var_Urho3D_LuaScriptEventListener = py::class_<Urho3D::LuaScriptEventListener, Urho3D::ExternalPtr<Urho3D::LuaScriptEventListener>>(pyclass_Var_Urho3D, "LuaScriptEventListener", "test doc");
// Type Urho3D::NavigationPathPoint Registrations
auto pyclass_Var_Urho3D_NavigationPathPoint = py::class_<Urho3D::NavigationPathPoint, Urho3D::ExternalPtr<Urho3D::NavigationPathPoint>>(pyclass_Var_Urho3D, "NavigationPathPoint", "test doc");
// Type Urho3D::HttpRequest Registrations
auto pyclass_Var_Urho3D_HttpRequest = py::class_<Urho3D::HttpRequest, Urho3D::SharedPtr<Urho3D::HttpRequest>, Urho3D::RefCounted, Urho3D::Deserializer, Urho3D::Thread>(pyclass_Var_Urho3D, "HttpRequest", "test doc");
// Type Urho3D::Localization Registrations
auto pyclass_Var_Urho3D_Localization = py::class_<Urho3D::Localization, Urho3D::SharedPtr<Urho3D::Localization>, Urho3D::Object>(pyclass_Var_Urho3D, "Localization", "test doc");
// Type Urho3D::RocketSys Registrations
auto pyclass_Var_Urho3D_RocketSys = py::class_<Urho3D::RocketSys, Urho3D::SharedPtr<Urho3D::RocketSys>, Urho3D::Object>(pyclass_Var_Urho3D, "RocketSys", "test doc");
// Type Urho3D::FileSelector Registrations
auto pyclass_Var_Urho3D_FileSelector = py::class_<Urho3D::FileSelector, Urho3D::SharedPtr<Urho3D::FileSelector>, Urho3D::Object>(pyclass_Var_Urho3D, "FileSelector", "test doc");
// Type Urho3D::FontFaceFreeType Registrations
auto pyclass_Var_Urho3D_FontFaceFreeType = py::class_<Urho3D::FontFaceFreeType, Urho3D::SharedPtr<Urho3D::FontFaceFreeType>, Urho3D::FontFace>(pyclass_Var_Urho3D, "FontFaceFreeType", "test doc");
// Type Urho3D::MessageBox Registrations
auto pyclass_Var_Urho3D_MessageBox = py::class_<Urho3D::MessageBox, Urho3D::SharedPtr<Urho3D::MessageBox>, Urho3D::Object>(pyclass_Var_Urho3D, "MessageBox", "test doc");
// Type Urho3D::UI Registrations
auto pyclass_Var_Urho3D_UI = py::class_<Urho3D::UI, Urho3D::SharedPtr<Urho3D::UI>, Urho3D::Object>(pyclass_Var_Urho3D, "UI", "test doc");
// Type Urho3D::PropertySet2D Registrations
auto pyclass_Var_Urho3D_PropertySet2D = py::class_<Urho3D::PropertySet2D, Urho3D::SharedPtr<Urho3D::PropertySet2D>, Urho3D::RefCounted>(pyclass_Var_Urho3D, "PropertySet2D", "test doc");
// Type Urho3D::VectorBase Registrations
auto pyclass_Var_Urho3D_VectorBase = py::class_<Urho3D::VectorBase, Urho3D::ExternalPtr<Urho3D::VectorBase>>(pyclass_Var_Urho3D, "VectorBase", "test doc");
// Type Urho3D::LinkedListNode Registrations
auto pyclass_Var_Urho3D_LinkedListNode = py::class_<Urho3D::LinkedListNode, Urho3D::ExternalPtr<Urho3D::LinkedListNode>>(pyclass_Var_Urho3D, "LinkedListNode", "test doc");
// Type Urho3D::Matrix3 Registrations
auto pyclass_Var_Urho3D_Matrix3 = py::class_<Urho3D::Matrix3, Urho3D::ExternalPtr<Urho3D::Matrix3>>(pyclass_Var_Urho3D, "Matrix3", "test doc");
// Type Urho3D::EventHandler Registrations
auto pyclass_Var_Urho3D_EventHandler = py::class_<Urho3D::EventHandler, Urho3D::ExternalPtr<Urho3D::EventHandler>, Urho3D::LinkedListNode>(pyclass_Var_Urho3D, "EventHandler", "test doc");
// Type Urho3D::Serializable Registrations
auto pyclass_Var_Urho3D_Serializable = py::class_<Urho3D::Serializable, Urho3D::SharedPtr<Urho3D::Serializable>, Urho3D::Object>(pyclass_Var_Urho3D, "Serializable", "test doc");
// Type Urho3D::NetworkState Registrations
auto pyclass_Var_Urho3D_NetworkState = py::class_<Urho3D::NetworkState, Urho3D::ExternalPtr<Urho3D::NetworkState>>(pyclass_Var_Urho3D, "NetworkState", "test doc");
// Type Urho3D::Animatable Registrations
auto pyclass_Var_Urho3D_Animatable = py::class_<Urho3D::Animatable, Urho3D::SharedPtr<Urho3D::Animatable>, Urho3D::Serializable>(pyclass_Var_Urho3D, "Animatable", "test doc");
// Type Urho3D::Node Registrations
auto pyclass_Var_Urho3D_Node = py::class_<Urho3D::Node, Urho3D::SharedPtr<Urho3D::Node>, Urho3D::Animatable>(pyclass_Var_Urho3D, "Node", "test doc");
// Type Urho3D::Frustum Registrations
auto pyclass_Var_Urho3D_Frustum = py::class_<Urho3D::Frustum, Urho3D::ExternalPtr<Urho3D::Frustum>>(pyclass_Var_Urho3D, "Frustum", "test doc");
// Type Urho3D::RayOctreeQuery Registrations
auto pyclass_Var_Urho3D_RayOctreeQuery = py::class_<Urho3D::RayOctreeQuery, Urho3D::ExternalPtr<Urho3D::RayOctreeQuery>>(pyclass_Var_Urho3D, "RayOctreeQuery", "test doc");
// Type Urho3D::Timer Registrations
auto pyclass_Var_Urho3D_Timer = py::class_<Urho3D::Timer, Urho3D::ExternalPtr<Urho3D::Timer>>(pyclass_Var_Urho3D, "Timer", "test doc");
// Type Urho3D::Log Registrations
auto pyclass_Var_Urho3D_Log = py::class_<Urho3D::Log, Urho3D::SharedPtr<Urho3D::Log>, Urho3D::Object>(pyclass_Var_Urho3D, "Log", "test doc");
// Type Urho3D::CascadeParameters Registrations
auto pyclass_Var_Urho3D_CascadeParameters = py::class_<Urho3D::CascadeParameters, Urho3D::ExternalPtr<Urho3D::CascadeParameters>>(pyclass_Var_Urho3D, "CascadeParameters", "test doc");
// Type Urho3D::UIElement Registrations
auto pyclass_Var_Urho3D_UIElement = py::class_<Urho3D::UIElement, Urho3D::SharedPtr<Urho3D::UIElement>, Urho3D::Animatable>(pyclass_Var_Urho3D, "UIElement", "test doc");
// Type Urho3D::BorderImage Registrations
auto pyclass_Var_Urho3D_BorderImage = py::class_<Urho3D::BorderImage, Urho3D::SharedPtr<Urho3D::BorderImage>, Urho3D::UIElement>(pyclass_Var_Urho3D, "BorderImage", "test doc");
// Type Urho3D::Profiler Registrations
auto pyclass_Var_Urho3D_Profiler = py::class_<Urho3D::Profiler, Urho3D::SharedPtr<Urho3D::Profiler>, Urho3D::Object>(pyclass_Var_Urho3D, "Profiler", "test doc");
// Type Urho3D::Console Registrations
auto pyclass_Var_Urho3D_Console = py::class_<Urho3D::Console, Urho3D::SharedPtr<Urho3D::Console>, Urho3D::Object>(pyclass_Var_Urho3D, "Console", "test doc");
// Type Urho3D::Button Registrations
auto pyclass_Var_Urho3D_Button = py::class_<Urho3D::Button, Urho3D::SharedPtr<Urho3D::Button>, Urho3D::BorderImage>(pyclass_Var_Urho3D, "Button", "test doc");
// Type Urho3D::LineEdit Registrations
auto pyclass_Var_Urho3D_LineEdit = py::class_<Urho3D::LineEdit, Urho3D::SharedPtr<Urho3D::LineEdit>, Urho3D::BorderImage>(pyclass_Var_Urho3D, "LineEdit", "test doc");
Implement_Class_Bindings_2(m);
// Class HashBase Implementation
pyclass_Var_Urho3D_HashBase
.def(py::init<>(), "todo: constructor docstring")
.def("Swap", (void (Urho3D::HashBase::*)(Urho3D::HashBase &)) &Urho3D::HashBase::Swap, "todo: docstring", py::arg("rhs"))
.def("Size", (unsigned int (Urho3D::HashBase::*)() const) &Urho3D::HashBase::Size, "todo: docstring")
.def("NumBuckets", (unsigned int (Urho3D::HashBase::*)() const) &Urho3D::HashBase::NumBuckets, "todo: docstring")
.def("Empty", (bool (Urho3D::HashBase::*)() const) &Urho3D::HashBase::Empty, "todo: docstring")
// Class Variables:
;
// Class WString Implementation
pyclass_Var_Urho3D_WString
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::String &>(), "todo: constructor docstring")
//.def("~WString", (void (Urho3D::WString::*)()) &Urho3D::WString::~WString, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
// .def(wchar_t & operator[](unsigned int index=None), "todo: docstring").def("__index__", (wchar_t & (Urho3D::WString::*)(unsigned int)) &Urho3D::WString::operator[], py::operator, "todo: operator docstring. Switch to py: :self ops.")
//Unhandled call style [] //['unsigned int']; op [], ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
// .def(const wchar_t & operator[](unsigned int index=None), "todo: docstring").def("__index__", (const wchar_t & (Urho3D::WString::*)(unsigned int) const) &Urho3D::WString::operator[], py::operator, "todo: operator docstring. Switch to py: :self ops.")
//Unhandled call style [] //['unsigned int']; op [], ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("At", (wchar_t & (Urho3D::WString::*)(unsigned int)) &Urho3D::WString::At, "todo: docstring", py::arg("index"))
.def("At", (const wchar_t & (Urho3D::WString::*)(unsigned int) const) &Urho3D::WString::At, "todo: docstring", py::arg("index"))
.def("Resize", (void (Urho3D::WString::*)(unsigned int)) &Urho3D::WString::Resize, "todo: docstring", py::arg("newLength"))
.def("Empty", (bool (Urho3D::WString::*)() const) &Urho3D::WString::Empty, "todo: docstring")
.def("Length", (unsigned int (Urho3D::WString::*)() const) &Urho3D::WString::Length, "todo: docstring")
.def("CString", (const wchar_t * (Urho3D::WString::*)() const) &Urho3D::WString::CString, "todo: docstring")
// Class Variables:
;
// Class StringHashRegister Implementation
pyclass_Var_Urho3D_StringHashRegister
.def(py::init<bool>(), "todo: constructor docstring")
//.def("~StringHashRegister", (void (Urho3D::StringHashRegister::*)()) &Urho3D::StringHashRegister::~StringHashRegister, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("RegisterString", (Urho3D::StringHash (Urho3D::StringHashRegister::*)(const Urho3D::StringHash &, const char *)) &Urho3D::StringHashRegister::RegisterString, "todo: docstring", py::arg("hash"), py::arg("string"))
.def("RegisterString", (Urho3D::StringHash (Urho3D::StringHashRegister::*)(const char *)) &Urho3D::StringHashRegister::RegisterString, "todo: docstring", py::arg("string"))
.def("GetStringCopy", (Urho3D::String (Urho3D::StringHashRegister::*)(const Urho3D::StringHash &) const) &Urho3D::StringHashRegister::GetStringCopy, "todo: docstring", py::arg("hash"))
.def("Contains", (bool (Urho3D::StringHashRegister::*)(const Urho3D::StringHash &) const) &Urho3D::StringHashRegister::Contains, "todo: docstring", py::arg("hash"))
.def("GetString", (const Urho3D::String & (Urho3D::StringHashRegister::*)(const Urho3D::StringHash &) const) &Urho3D::StringHashRegister::GetString, "todo: docstring", py::arg("hash"))
.def("GetInternalMap", (const Urho3D::StringMap & (Urho3D::StringHashRegister::*)() const) &Urho3D::StringHashRegister::GetInternalMap, "todo: docstring")
// Class Variables:
;
// Class StringFactory Implementation
pyclass_Var_Urho3D_StringFactory
.def("GetStringConstant", (const void * (Urho3D::StringFactory::*)(const char *, unsigned int)) &Urho3D::StringFactory::GetStringConstant, "todo: docstring", py::arg("data"), py::arg("length"))
.def("ReleaseStringConstant", (int (Urho3D::StringFactory::*)(const void *)) &Urho3D::StringFactory::ReleaseStringConstant, "todo: docstring", py::arg("str"))
.def("GetRawStringData", (int (Urho3D::StringFactory::*)(const void *, char *, unsigned int *) const) &Urho3D::StringFactory::GetRawStringData, "todo: docstring", py::arg("str"), py::arg("data"), py::arg("length"))
// Class Variables:
;
// Class MutexLock Implementation
pyclass_Var_Urho3D_MutexLock
.def(py::init<Urho3D::Mutex &>(), "todo: constructor docstring")
//.def("~MutexLock", (void (Urho3D::MutexLock::*)()) &Urho3D::MutexLock::~MutexLock, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
//.def(py::init<const Urho3D::MutexLock &>(), "todo: constructor docstring")
//['Urho3D::MutexLock']; op False, ctor True, dtor False, variadic False, deleted True, ret bad False, param bad False, max ptr 0
// .def(py::self = Urho3D::MutexLock(), "todo: docstring").def("__assign__", (Urho3D::MutexLock & (Urho3D::MutexLock::*)(const Urho3D::MutexLock &)) &Urho3D::MutexLock::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::MutexLock']; op =, ctor False, dtor False, variadic False, deleted True, ret bad False, param bad False, max ptr 0
// Class Variables:
;
// Class RefCounted Implementation
pyclass_Var_Urho3D_RefCounted
.def(py::init<>(), "todo: constructor docstring")
//.def("~RefCounted", (void (Urho3D::RefCounted::*)()) &Urho3D::RefCounted::~RefCounted, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
//.def(py::init<const Urho3D::RefCounted &>(), "todo: constructor docstring")
//['Urho3D::RefCounted']; op False, ctor True, dtor False, variadic False, deleted True, ret bad False, param bad False, max ptr 0
// .def(py::self = Urho3D::RefCounted(), "todo: docstring").def("__assign__", (Urho3D::RefCounted & (Urho3D::RefCounted::*)(const Urho3D::RefCounted &)) &Urho3D::RefCounted::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::RefCounted']; op =, ctor False, dtor False, variadic False, deleted True, ret bad False, param bad False, max ptr 0
.def("AddRef", (void (Urho3D::RefCounted::*)()) &Urho3D::RefCounted::AddRef, "todo: docstring")
.def("ReleaseRef", (void (Urho3D::RefCounted::*)()) &Urho3D::RefCounted::ReleaseRef, "todo: docstring")
.def("Refs", (int (Urho3D::RefCounted::*)() const) &Urho3D::RefCounted::Refs, "todo: docstring")
.def("WeakRefs", (int (Urho3D::RefCounted::*)() const) &Urho3D::RefCounted::WeakRefs, "todo: docstring")
//.def("RefCountPtr", (Urho3D::RefCount * (Urho3D::RefCounted::*)()) &Urho3D::RefCounted::RefCountPtr, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 1
// Class Variables:
;
// Class Vector2 Implementation
pyclass_Var_Urho3D_Vector2
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Vector2 &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::IntVector2 &>(), "todo: constructor docstring")
.def(py::init<float, float>(), "todo: constructor docstring")
.def(py::init<const float *>(), "todo: constructor docstring")
// .def(py::self = Urho3D::Vector2(), "todo: docstring").def("__assign__", (Urho3D::Vector2 & (Urho3D::Vector2::*)(const Urho3D::Vector2 &)) &Urho3D::Vector2::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::Vector2']; op =, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self == Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self + Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op +, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(-py::self, "todo: docstring")
//[]; op -@, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self - Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op -, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * float(), "todo: docstring")
//['float']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self / float(), "todo: docstring")
//['float']; op /, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self / Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op /, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self += Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op +=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self -= Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op -=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self *= float(), "todo: docstring")
//['float']; op *=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self *= Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op *=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self /= float(), "todo: docstring")
//['float']; op /=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self /= Urho3D::Vector2(), "todo: docstring")
//['Urho3D::Vector2']; op /=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("Normalize", (void (Urho3D::Vector2::*)()) &Urho3D::Vector2::Normalize, "todo: docstring")
.def("Length", (float (Urho3D::Vector2::*)() const) &Urho3D::Vector2::Length, "todo: docstring")
.def("LengthSquared", (float (Urho3D::Vector2::*)() const) &Urho3D::Vector2::LengthSquared, "todo: docstring")
.def("DotProduct", (float (Urho3D::Vector2::*)(const Urho3D::Vector2 &) const) &Urho3D::Vector2::DotProduct, "todo: docstring", py::arg("rhs"))
.def("AbsDotProduct", (float (Urho3D::Vector2::*)(const Urho3D::Vector2 &) const) &Urho3D::Vector2::AbsDotProduct, "todo: docstring", py::arg("rhs"))
.def("ProjectOntoAxis", (float (Urho3D::Vector2::*)(const Urho3D::Vector2 &) const) &Urho3D::Vector2::ProjectOntoAxis, "todo: docstring", py::arg("axis"))
.def("Angle", (float (Urho3D::Vector2::*)(const Urho3D::Vector2 &) const) &Urho3D::Vector2::Angle, "todo: docstring", py::arg("rhs"))
.def("Abs", (Urho3D::Vector2 (Urho3D::Vector2::*)() const) &Urho3D::Vector2::Abs, "todo: docstring")
.def("Lerp", (Urho3D::Vector2 (Urho3D::Vector2::*)(const Urho3D::Vector2 &, float) const) &Urho3D::Vector2::Lerp, "todo: docstring", py::arg("rhs"), py::arg("t"))
.def("Equals", (bool (Urho3D::Vector2::*)(const Urho3D::Vector2 &) const) &Urho3D::Vector2::Equals, "todo: docstring", py::arg("rhs"))
.def("IsNaN", (bool (Urho3D::Vector2::*)() const) &Urho3D::Vector2::IsNaN, "todo: docstring")
.def("Normalized", (Urho3D::Vector2 (Urho3D::Vector2::*)() const) &Urho3D::Vector2::Normalized, "todo: docstring")
.def("Data", (const float * (Urho3D::Vector2::*)() const) &Urho3D::Vector2::Data, "todo: docstring")
.def("ToString", (Urho3D::String (Urho3D::Vector2::*)() const) &Urho3D::Vector2::ToString, "todo: docstring")
// External Operators:
.def(float() * py::self, "todo: docstring")
// Class Variables:
.def_readwrite("x",&Urho3D::Vector2::x_, "todo: var docstring")//float
.def_readwrite("y",&Urho3D::Vector2::y_, "todo: var docstring")//float
.def_readonly_static("ZERO",&Urho3D::Vector2::ZERO, "todo: var docstring")//const Urho3D::Vector2
.def_readonly_static("LEFT",&Urho3D::Vector2::LEFT, "todo: var docstring")//const Urho3D::Vector2
.def_readonly_static("RIGHT",&Urho3D::Vector2::RIGHT, "todo: var docstring")//const Urho3D::Vector2
.def_readonly_static("UP",&Urho3D::Vector2::UP, "todo: var docstring")//const Urho3D::Vector2
.def_readonly_static("DOWN",&Urho3D::Vector2::DOWN, "todo: var docstring")//const Urho3D::Vector2
.def_readonly_static("ONE",&Urho3D::Vector2::ONE, "todo: var docstring")//const Urho3D::Vector2
;
// Class Vector3 Implementation
pyclass_Var_Urho3D_Vector3
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Vector3 &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Vector2 &, float>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Vector2 &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::IntVector3 &>(), "todo: constructor docstring")
.def(py::init<float, float, float>(), "todo: constructor docstring")
.def(py::init<float, float>(), "todo: constructor docstring")
.def(py::init<const float *>(), "todo: constructor docstring")
// .def(py::self = Urho3D::Vector3(), "todo: docstring").def("__assign__", (Urho3D::Vector3 & (Urho3D::Vector3::*)(const Urho3D::Vector3 &)) &Urho3D::Vector3::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::Vector3']; op =, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self == Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self + Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op +, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(-py::self, "todo: docstring")
//[]; op -@, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self - Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op -, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * float(), "todo: docstring")
//['float']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self / float(), "todo: docstring")
//['float']; op /, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self / Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op /, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self += Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op +=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self -= Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op -=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self *= float(), "todo: docstring")
//['float']; op *=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self *= Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op *=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self /= float(), "todo: docstring")
//['float']; op /=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self /= Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op /=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("Normalize", (void (Urho3D::Vector3::*)()) &Urho3D::Vector3::Normalize, "todo: docstring")
.def("Length", (float (Urho3D::Vector3::*)() const) &Urho3D::Vector3::Length, "todo: docstring")
.def("LengthSquared", (float (Urho3D::Vector3::*)() const) &Urho3D::Vector3::LengthSquared, "todo: docstring")
.def("DotProduct", (float (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::DotProduct, "todo: docstring", py::arg("rhs"))
.def("AbsDotProduct", (float (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::AbsDotProduct, "todo: docstring", py::arg("rhs"))
.def("ProjectOntoAxis", (float (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::ProjectOntoAxis, "todo: docstring", py::arg("axis"))
.def("ProjectOntoPlane", (Urho3D::Vector3 (Urho3D::Vector3::*)(const Urho3D::Vector3 &, const Urho3D::Vector3 &) const) &Urho3D::Vector3::ProjectOntoPlane, "todo: docstring", py::arg("origin"), py::arg("normal"))
.def("ProjectOntoLine", (Urho3D::Vector3 (Urho3D::Vector3::*)(const Urho3D::Vector3 &, const Urho3D::Vector3 &, bool) const) &Urho3D::Vector3::ProjectOntoLine, "todo: docstring", py::arg("from"), py::arg("to"), py::arg("clamped")=false)
.def("DistanceToPoint", (float (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::DistanceToPoint, "todo: docstring", py::arg("point"))
.def("DistanceToPlane", (float (Urho3D::Vector3::*)(const Urho3D::Vector3 &, const Urho3D::Vector3 &) const) &Urho3D::Vector3::DistanceToPlane, "todo: docstring", py::arg("origin"), py::arg("normal"))
.def("Orthogonalize", (Urho3D::Vector3 (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::Orthogonalize, "todo: docstring", py::arg("axis"))
.def("CrossProduct", (Urho3D::Vector3 (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::CrossProduct, "todo: docstring", py::arg("rhs"))
.def("Abs", (Urho3D::Vector3 (Urho3D::Vector3::*)() const) &Urho3D::Vector3::Abs, "todo: docstring")
.def("Lerp", (Urho3D::Vector3 (Urho3D::Vector3::*)(const Urho3D::Vector3 &, float) const) &Urho3D::Vector3::Lerp, "todo: docstring", py::arg("rhs"), py::arg("t"))
.def("Equals", (bool (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::Equals, "todo: docstring", py::arg("rhs"))
.def("Angle", (float (Urho3D::Vector3::*)(const Urho3D::Vector3 &) const) &Urho3D::Vector3::Angle, "todo: docstring", py::arg("rhs"))
.def("IsNaN", (bool (Urho3D::Vector3::*)() const) &Urho3D::Vector3::IsNaN, "todo: docstring")
.def("Normalized", (Urho3D::Vector3 (Urho3D::Vector3::*)() const) &Urho3D::Vector3::Normalized, "todo: docstring")
.def("Data", (const float * (Urho3D::Vector3::*)() const) &Urho3D::Vector3::Data, "todo: docstring")
.def("ToString", (Urho3D::String (Urho3D::Vector3::*)() const) &Urho3D::Vector3::ToString, "todo: docstring")
.def("ToHash", (unsigned int (Urho3D::Vector3::*)() const) &Urho3D::Vector3::ToHash, "todo: docstring")
// External Operators:
.def(float() * py::self, "todo: docstring")
// Class Variables:
.def_readwrite("x",&Urho3D::Vector3::x_, "todo: var docstring")//float
.def_readwrite("y",&Urho3D::Vector3::y_, "todo: var docstring")//float
.def_readwrite("z",&Urho3D::Vector3::z_, "todo: var docstring")//float
.def_readonly_static("ZERO",&Urho3D::Vector3::ZERO, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("LEFT",&Urho3D::Vector3::LEFT, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("RIGHT",&Urho3D::Vector3::RIGHT, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("UP",&Urho3D::Vector3::UP, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("DOWN",&Urho3D::Vector3::DOWN, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("FORWARD",&Urho3D::Vector3::FORWARD, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("BACK",&Urho3D::Vector3::BACK, "todo: var docstring")//const Urho3D::Vector3
.def_readonly_static("ONE",&Urho3D::Vector3::ONE, "todo: var docstring")//const Urho3D::Vector3
;
// Class Color Implementation
pyclass_Var_Urho3D_Color
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Color &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Color &, float>(), "todo: constructor docstring")
.def(py::init<float, float, float>(), "todo: constructor docstring")
.def(py::init<float, float, float, float>(), "todo: constructor docstring")
.def(py::init<const float *>(), "todo: constructor docstring")
// .def(py::self = Urho3D::Color(), "todo: docstring").def("__assign__", (Urho3D::Color & (Urho3D::Color::*)(const Urho3D::Color &)) &Urho3D::Color::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::Color']; op =, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self == Urho3D::Color(), "todo: docstring")
//['Urho3D::Color']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::Color(), "todo: docstring")
//['Urho3D::Color']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * float(), "todo: docstring")
//['float']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self + Urho3D::Color(), "todo: docstring")
//['Urho3D::Color']; op +, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(-py::self, "todo: docstring")
//[]; op -@, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self - Urho3D::Color(), "todo: docstring")
//['Urho3D::Color']; op -, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self += Urho3D::Color(), "todo: docstring")
//['Urho3D::Color']; op +=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("Data", (const float * (Urho3D::Color::*)() const) &Urho3D::Color::Data, "todo: docstring")
.def("ToUInt", (unsigned int (Urho3D::Color::*)() const) &Urho3D::Color::ToUInt, "todo: docstring")
.def("ToHSL", (Urho3D::Vector3 (Urho3D::Color::*)() const) &Urho3D::Color::ToHSL, "todo: docstring")
.def("ToHSV", (Urho3D::Vector3 (Urho3D::Color::*)() const) &Urho3D::Color::ToHSV, "todo: docstring")
.def("FromUInt", (void (Urho3D::Color::*)(unsigned int)) &Urho3D::Color::FromUInt, "todo: docstring", py::arg("color"))
.def("FromHSL", (void (Urho3D::Color::*)(float, float, float, float)) &Urho3D::Color::FromHSL, "todo: docstring", py::arg("h"), py::arg("s"), py::arg("l"), py::arg("a")=1.0f)
.def("FromHSV", (void (Urho3D::Color::*)(float, float, float, float)) &Urho3D::Color::FromHSV, "todo: docstring", py::arg("h"), py::arg("s"), py::arg("v"), py::arg("a")=1.0f)
.def("ToVector3", (Urho3D::Vector3 (Urho3D::Color::*)() const) &Urho3D::Color::ToVector3, "todo: docstring")
.def("ToVector4", (Urho3D::Vector4 (Urho3D::Color::*)() const) &Urho3D::Color::ToVector4, "todo: docstring")
.def("SumRGB", (float (Urho3D::Color::*)() const) &Urho3D::Color::SumRGB, "todo: docstring")
.def("Average", (float (Urho3D::Color::*)() const) &Urho3D::Color::Average, "todo: docstring")
.def("Luma", (float (Urho3D::Color::*)() const) &Urho3D::Color::Luma, "todo: docstring")
.def("Chroma", (float (Urho3D::Color::*)() const) &Urho3D::Color::Chroma, "todo: docstring")
.def("Hue", (float (Urho3D::Color::*)() const) &Urho3D::Color::Hue, "todo: docstring")
.def("SaturationHSL", (float (Urho3D::Color::*)() const) &Urho3D::Color::SaturationHSL, "todo: docstring")
.def("SaturationHSV", (float (Urho3D::Color::*)() const) &Urho3D::Color::SaturationHSV, "todo: docstring")
.def("Value", (float (Urho3D::Color::*)() const) &Urho3D::Color::Value, "todo: docstring")
.def("Lightness", (float (Urho3D::Color::*)() const) &Urho3D::Color::Lightness, "todo: docstring")
.def("Bounds", (void (Urho3D::Color::*)(float *, float *, bool) const) &Urho3D::Color::Bounds, "todo: docstring", py::arg("min"), py::arg("max"), py::arg("clipped")=false)
.def("MaxRGB", (float (Urho3D::Color::*)() const) &Urho3D::Color::MaxRGB, "todo: docstring")
.def("MinRGB", (float (Urho3D::Color::*)() const) &Urho3D::Color::MinRGB, "todo: docstring")
.def("Range", (float (Urho3D::Color::*)() const) &Urho3D::Color::Range, "todo: docstring")
.def("Clip", (void (Urho3D::Color::*)(bool)) &Urho3D::Color::Clip, "todo: docstring", py::arg("clipAlpha")=false)
.def("Invert", (void (Urho3D::Color::*)(bool)) &Urho3D::Color::Invert, "todo: docstring", py::arg("invertAlpha")=false)
.def("Lerp", (Urho3D::Color (Urho3D::Color::*)(const Urho3D::Color &, float) const) &Urho3D::Color::Lerp, "todo: docstring", py::arg("rhs"), py::arg("t"))
.def("Abs", (Urho3D::Color (Urho3D::Color::*)() const) &Urho3D::Color::Abs, "todo: docstring")
.def("Equals", (bool (Urho3D::Color::*)(const Urho3D::Color &) const) &Urho3D::Color::Equals, "todo: docstring", py::arg("rhs"))
.def("ToString", (Urho3D::String (Urho3D::Color::*)() const) &Urho3D::Color::ToString, "todo: docstring")
.def("ToHash", (unsigned int (Urho3D::Color::*)() const) &Urho3D::Color::ToHash, "todo: docstring")
// External Operators:
.def(float() * py::self, "todo: docstring")
// Class Variables:
.def_readwrite("r",&Urho3D::Color::r_, "todo: var docstring")//float
.def_readwrite("g",&Urho3D::Color::g_, "todo: var docstring")//float
.def_readwrite("b",&Urho3D::Color::b_, "todo: var docstring")//float
.def_readwrite("a",&Urho3D::Color::a_, "todo: var docstring")//float
.def_readonly_static("WHITE",&Urho3D::Color::WHITE, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("GRAY",&Urho3D::Color::GRAY, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("BLACK",&Urho3D::Color::BLACK, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("RED",&Urho3D::Color::RED, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("GREEN",&Urho3D::Color::GREEN, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("BLUE",&Urho3D::Color::BLUE, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("CYAN",&Urho3D::Color::CYAN, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("MAGENTA",&Urho3D::Color::MAGENTA, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("YELLOW",&Urho3D::Color::YELLOW, "todo: var docstring")//const Urho3D::Color
.def_readonly_static("TRANSPARENT_BLACK",&Urho3D::Color::TRANSPARENT_BLACK, "todo: var docstring")//const Urho3D::Color
;
// Class Quaternion Implementation
pyclass_Var_Urho3D_Quaternion
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Quaternion &>(), "todo: constructor docstring")
.def(py::init<float, float, float, float>(), "todo: constructor docstring")
.def(py::init<const float *>(), "todo: constructor docstring")
.def(py::init<float, const Urho3D::Vector3 &>(), "todo: constructor docstring")
.def(py::init<float>(), "todo: constructor docstring")
.def(py::init<float, float, float>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Vector3 &, const Urho3D::Vector3 &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Vector3 &, const Urho3D::Vector3 &, const Urho3D::Vector3 &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Matrix3 &>(), "todo: constructor docstring")
//.def(py::init<__attribute__((__vector_size__(4 * sizeof(float)))) float>(), "todo: constructor docstring")
//['__attribute__']; op False, ctor True, dtor False, variadic False, deleted False, ret bad False, param bad True, max ptr 1
// .def(py::self = Urho3D::Quaternion(), "todo: docstring").def("__assign__", (Urho3D::Quaternion & (Urho3D::Quaternion::*)(const Urho3D::Quaternion &)) &Urho3D::Quaternion::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::Quaternion']; op =, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self += Urho3D::Quaternion(), "todo: docstring")
//['Urho3D::Quaternion']; op +=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self *= float(), "todo: docstring")
//['float']; op *=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self == Urho3D::Quaternion(), "todo: docstring")
//['Urho3D::Quaternion']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::Quaternion(), "todo: docstring")
//['Urho3D::Quaternion']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * float(), "todo: docstring")
//['float']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(-py::self, "todo: docstring")
//[]; op -@, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self + Urho3D::Quaternion(), "todo: docstring")
//['Urho3D::Quaternion']; op +, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self - Urho3D::Quaternion(), "todo: docstring")
//['Urho3D::Quaternion']; op -, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Quaternion(), "todo: docstring")
//['Urho3D::Quaternion']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("FromAngleAxis", (void (Urho3D::Quaternion::*)(float, const Urho3D::Vector3 &)) &Urho3D::Quaternion::FromAngleAxis, "todo: docstring", py::arg("angle"), py::arg("axis"))
.def("FromEulerAngles", (void (Urho3D::Quaternion::*)(float, float, float)) &Urho3D::Quaternion::FromEulerAngles, "todo: docstring", py::arg("x"), py::arg("y"), py::arg("z"))
.def("FromRotationTo", (void (Urho3D::Quaternion::*)(const Urho3D::Vector3 &, const Urho3D::Vector3 &)) &Urho3D::Quaternion::FromRotationTo, "todo: docstring", py::arg("start"), py::arg("end"))
.def("FromAxes", (void (Urho3D::Quaternion::*)(const Urho3D::Vector3 &, const Urho3D::Vector3 &, const Urho3D::Vector3 &)) &Urho3D::Quaternion::FromAxes, "todo: docstring", py::arg("xAxis"), py::arg("yAxis"), py::arg("zAxis"))
.def("FromRotationMatrix", (void (Urho3D::Quaternion::*)(const Urho3D::Matrix3 &)) &Urho3D::Quaternion::FromRotationMatrix, "todo: docstring", py::arg("matrix"))
.def("FromLookRotation", (bool (Urho3D::Quaternion::*)(const Urho3D::Vector3 &, const Urho3D::Vector3 &)) &Urho3D::Quaternion::FromLookRotation, "todo: docstring", py::arg("direction"), py::arg("up")=Vector3::UP)
.def("Normalize", (void (Urho3D::Quaternion::*)()) &Urho3D::Quaternion::Normalize, "todo: docstring")
.def("Normalized", (Urho3D::Quaternion (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::Normalized, "todo: docstring")
.def("Inverse", (Urho3D::Quaternion (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::Inverse, "todo: docstring")
.def("LengthSquared", (float (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::LengthSquared, "todo: docstring")
.def("DotProduct", (float (Urho3D::Quaternion::*)(const Urho3D::Quaternion &) const) &Urho3D::Quaternion::DotProduct, "todo: docstring", py::arg("rhs"))
.def("Equals", (bool (Urho3D::Quaternion::*)(const Urho3D::Quaternion &) const) &Urho3D::Quaternion::Equals, "todo: docstring", py::arg("rhs"))
.def("IsNaN", (bool (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::IsNaN, "todo: docstring")
.def("Conjugate", (Urho3D::Quaternion (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::Conjugate, "todo: docstring")
.def("EulerAngles", (Urho3D::Vector3 (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::EulerAngles, "todo: docstring")
.def("YawAngle", (float (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::YawAngle, "todo: docstring")
.def("PitchAngle", (float (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::PitchAngle, "todo: docstring")
.def("RollAngle", (float (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::RollAngle, "todo: docstring")
.def("Axis", (Urho3D::Vector3 (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::Axis, "todo: docstring")
.def("Angle", (float (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::Angle, "todo: docstring")
.def("RotationMatrix", (Urho3D::Matrix3 (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::RotationMatrix, "todo: docstring")
.def("Slerp", (Urho3D::Quaternion (Urho3D::Quaternion::*)(const Urho3D::Quaternion &, float) const) &Urho3D::Quaternion::Slerp, "todo: docstring", py::arg("rhs"), py::arg("t"))
.def("Nlerp", (Urho3D::Quaternion (Urho3D::Quaternion::*)(const Urho3D::Quaternion &, float, bool) const) &Urho3D::Quaternion::Nlerp, "todo: docstring", py::arg("rhs"), py::arg("t"), py::arg("shortestPath")=false)
.def("Data", (const float * (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::Data, "todo: docstring")
.def("ToString", (Urho3D::String (Urho3D::Quaternion::*)() const) &Urho3D::Quaternion::ToString, "todo: docstring")
// Class Variables:
.def_readwrite("w",&Urho3D::Quaternion::w_, "todo: var docstring")//float
.def_readwrite("x",&Urho3D::Quaternion::x_, "todo: var docstring")//float
.def_readwrite("y",&Urho3D::Quaternion::y_, "todo: var docstring")//float
.def_readwrite("z",&Urho3D::Quaternion::z_, "todo: var docstring")//float
.def_readonly_static("IDENTITY",&Urho3D::Quaternion::IDENTITY, "todo: var docstring")//const Urho3D::Quaternion
;
// Class Matrix4 Implementation
pyclass_Var_Urho3D_Matrix4
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Matrix4 &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::Matrix3 &>(), "todo: constructor docstring")
.def(py::init<float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float>(), "todo: constructor docstring")
.def(py::init<const float *>(), "todo: constructor docstring")
// .def(py::self = Urho3D::Matrix4(), "todo: docstring").def("__assign__", (Urho3D::Matrix4 & (Urho3D::Matrix4::*)(const Urho3D::Matrix4 &)) &Urho3D::Matrix4::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::Matrix4']; op =, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
// .def(py::self = Urho3D::Matrix3(), "todo: docstring").def("__assign__", (Urho3D::Matrix4 & (Urho3D::Matrix4::*)(const Urho3D::Matrix3 &)) &Urho3D::Matrix4::operator=, py::operator, "todo: operator docstring. Switch to py: :self ops.")
//['Urho3D::Matrix3']; op =, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self == Urho3D::Matrix4(), "todo: docstring")
//['Urho3D::Matrix4']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::Matrix4(), "todo: docstring")
//['Urho3D::Matrix4']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Vector3(), "todo: docstring")
//['Urho3D::Vector3']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Vector4(), "todo: docstring")
//['Urho3D::Vector4']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self + Urho3D::Matrix4(), "todo: docstring")
//['Urho3D::Matrix4']; op +, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self - Urho3D::Matrix4(), "todo: docstring")
//['Urho3D::Matrix4']; op -, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * float(), "todo: docstring")
//['float']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Matrix4(), "todo: docstring")
//['Urho3D::Matrix4']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * Urho3D::Matrix3x4(), "todo: docstring")
//['Urho3D::Matrix3x4']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("SetTranslation", (void (Urho3D::Matrix4::*)(const Urho3D::Vector3 &)) &Urho3D::Matrix4::SetTranslation, "todo: docstring", py::arg("translation"))
.def("SetRotation", (void (Urho3D::Matrix4::*)(const Urho3D::Matrix3 &)) &Urho3D::Matrix4::SetRotation, "todo: docstring", py::arg("rotation"))
.def("SetScale", (void (Urho3D::Matrix4::*)(const Urho3D::Vector3 &)) &Urho3D::Matrix4::SetScale, "todo: docstring", py::arg("scale"))
.def("SetScale", (void (Urho3D::Matrix4::*)(float)) &Urho3D::Matrix4::SetScale, "todo: docstring", py::arg("scale"))
.def("ToMatrix3", (Urho3D::Matrix3 (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::ToMatrix3, "todo: docstring")
.def("RotationMatrix", (Urho3D::Matrix3 (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::RotationMatrix, "todo: docstring")
.def("Translation", (Urho3D::Vector3 (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::Translation, "todo: docstring")
.def("Rotation", (Urho3D::Quaternion (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::Rotation, "todo: docstring")
.def("Scale", (Urho3D::Vector3 (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::Scale, "todo: docstring")
.def("SignedScale", (Urho3D::Vector3 (Urho3D::Matrix4::*)(const Urho3D::Matrix3 &) const) &Urho3D::Matrix4::SignedScale, "todo: docstring", py::arg("rotation"))
.def("Transpose", (Urho3D::Matrix4 (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::Transpose, "todo: docstring")
.def("Equals", (bool (Urho3D::Matrix4::*)(const Urho3D::Matrix4 &) const) &Urho3D::Matrix4::Equals, "todo: docstring", py::arg("rhs"))
.def("Decompose", (void (Urho3D::Matrix4::*)(Urho3D::Vector3 &, Urho3D::Quaternion &, Urho3D::Vector3 &) const) &Urho3D::Matrix4::Decompose, "todo: docstring", py::arg("translation"), py::arg("rotation"), py::arg("scale"))
.def("Inverse", (Urho3D::Matrix4 (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::Inverse, "todo: docstring")
.def("Data", (const float * (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::Data, "todo: docstring")
.def("Element", (float (Urho3D::Matrix4::*)(unsigned int, unsigned int) const) &Urho3D::Matrix4::Element, "todo: docstring", py::arg("i"), py::arg("j"))
.def("Row", (Urho3D::Vector4 (Urho3D::Matrix4::*)(unsigned int) const) &Urho3D::Matrix4::Row, "todo: docstring", py::arg("i"))
.def("Column", (Urho3D::Vector4 (Urho3D::Matrix4::*)(unsigned int) const) &Urho3D::Matrix4::Column, "todo: docstring", py::arg("j"))
.def("ToString", (Urho3D::String (Urho3D::Matrix4::*)() const) &Urho3D::Matrix4::ToString, "todo: docstring")
// External Operators:
.def(float() * py::self, "todo: docstring")
// Class Variables:
.def_readwrite("m00",&Urho3D::Matrix4::m00_, "todo: var docstring")//float
.def_readwrite("m01",&Urho3D::Matrix4::m01_, "todo: var docstring")//float
.def_readwrite("m02",&Urho3D::Matrix4::m02_, "todo: var docstring")//float
.def_readwrite("m03",&Urho3D::Matrix4::m03_, "todo: var docstring")//float
.def_readwrite("m10",&Urho3D::Matrix4::m10_, "todo: var docstring")//float
.def_readwrite("m11",&Urho3D::Matrix4::m11_, "todo: var docstring")//float
.def_readwrite("m12",&Urho3D::Matrix4::m12_, "todo: var docstring")//float
.def_readwrite("m13",&Urho3D::Matrix4::m13_, "todo: var docstring")//float
.def_readwrite("m20",&Urho3D::Matrix4::m20_, "todo: var docstring")//float
.def_readwrite("m21",&Urho3D::Matrix4::m21_, "todo: var docstring")//float
.def_readwrite("m22",&Urho3D::Matrix4::m22_, "todo: var docstring")//float
.def_readwrite("m23",&Urho3D::Matrix4::m23_, "todo: var docstring")//float
.def_readwrite("m30",&Urho3D::Matrix4::m30_, "todo: var docstring")//float
.def_readwrite("m31",&Urho3D::Matrix4::m31_, "todo: var docstring")//float
.def_readwrite("m32",&Urho3D::Matrix4::m32_, "todo: var docstring")//float
.def_readwrite("m33",&Urho3D::Matrix4::m33_, "todo: var docstring")//float
.def_readonly_static("ZERO",&Urho3D::Matrix4::ZERO, "todo: var docstring")//const Urho3D::Matrix4
.def_readonly_static("IDENTITY",&Urho3D::Matrix4::IDENTITY, "todo: var docstring")//const Urho3D::Matrix4
;
// Class IntRect Implementation
pyclass_Var_Urho3D_IntRect
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<const Urho3D::IntVector2 &, const Urho3D::IntVector2 &>(), "todo: constructor docstring")
.def(py::init<int, int, int, int>(), "todo: constructor docstring")
.def(py::init<const int *>(), "todo: constructor docstring")
.def(py::self == Urho3D::IntRect(), "todo: docstring")
//['Urho3D::IntRect']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::IntRect(), "todo: docstring")
//['Urho3D::IntRect']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self += Urho3D::IntRect(), "todo: docstring")
//['Urho3D::IntRect']; op +=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self -= Urho3D::IntRect(), "todo: docstring")
//['Urho3D::IntRect']; op -=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self /= float(), "todo: docstring")
//['float']; op /=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self *= float(), "todo: docstring")
//['float']; op *=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self / float(), "todo: docstring")
//['float']; op /, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self * float(), "todo: docstring")
//['float']; op *, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self + Urho3D::IntRect(), "todo: docstring")
//['Urho3D::IntRect']; op +, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self - Urho3D::IntRect(), "todo: docstring")
//['Urho3D::IntRect']; op -, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("Size", (Urho3D::IntVector2 (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Size, "todo: docstring")
.def("Width", (int (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Width, "todo: docstring")
.def("Height", (int (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Height, "todo: docstring")
.def("IsInside", (Urho3D::Intersection (Urho3D::IntRect::*)(const Urho3D::IntVector2 &) const) &Urho3D::IntRect::IsInside, "todo: docstring", py::arg("point"))
.def("Clip", (void (Urho3D::IntRect::*)(const Urho3D::IntRect &)) &Urho3D::IntRect::Clip, "todo: docstring", py::arg("rect"))
.def("Merge", (void (Urho3D::IntRect::*)(const Urho3D::IntRect &)) &Urho3D::IntRect::Merge, "todo: docstring", py::arg("rect"))
.def("Data", (const int * (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Data, "todo: docstring")
.def("ToString", (Urho3D::String (Urho3D::IntRect::*)() const) &Urho3D::IntRect::ToString, "todo: docstring")
.def("Min", (Urho3D::IntVector2 (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Min, "todo: docstring")
.def("Max", (Urho3D::IntVector2 (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Max, "todo: docstring")
.def("Left", (int (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Left, "todo: docstring")
.def("Top", (int (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Top, "todo: docstring")
.def("Right", (int (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Right, "todo: docstring")
.def("Bottom", (int (Urho3D::IntRect::*)() const) &Urho3D::IntRect::Bottom, "todo: docstring")
// Class Variables:
.def_readwrite("left",&Urho3D::IntRect::left_, "todo: var docstring")//int
.def_readwrite("top",&Urho3D::IntRect::top_, "todo: var docstring")//int
.def_readwrite("right",&Urho3D::IntRect::right_, "todo: var docstring")//int
.def_readwrite("bottom",&Urho3D::IntRect::bottom_, "todo: var docstring")//int
.def_readonly_static("ZERO",&Urho3D::IntRect::ZERO, "todo: var docstring")//const Urho3D::IntRect
;
// Class ResourceRef Implementation
pyclass_Var_Urho3D_ResourceRef
.def(py::init<>(), "todo: constructor docstring")
.def(py::init<Urho3D::StringHash>(), "todo: constructor docstring")
.def(py::init<Urho3D::StringHash, const Urho3D::String &>(), "todo: constructor docstring")
.def(py::init<const Urho3D::String &, const Urho3D::String &>(), "todo: constructor docstring")
.def(py::init<const char *, const char *>(), "todo: constructor docstring")
.def(py::init<const Urho3D::ResourceRef &>(), "todo: constructor docstring")
.def(py::self == Urho3D::ResourceRef(), "todo: docstring")
//['Urho3D::ResourceRef']; op ==, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def(py::self != Urho3D::ResourceRef(), "todo: docstring")
//['Urho3D::ResourceRef']; op !=, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad False, max ptr 0
// Class Variables:
.def_readwrite("type",&Urho3D::ResourceRef::type_, "todo: var docstring")//Urho3D::StringHash
.def_readwrite("name",&Urho3D::ResourceRef::name_, "todo: var docstring")//Urho3D::String
;
// Class Context Implementation
pyclass_Var_Urho3D_Context
.def(py::init<>(), "todo: constructor docstring")
//.def("~Context", (void (Urho3D::Context::*)()) &Urho3D::Context::~Context, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
//.def("CreateObject", (SharedPtr<Urho3D::Object> (Urho3D::Context::*)(Urho3D::StringHash)) &Urho3D::Context::CreateObject, "todo: docstring", py::arg("objectType"))
//['Urho3D::StringHash']; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
.def("RegisterFactory", (void (Urho3D::Context::*)(Urho3D::ObjectFactory *)) &Urho3D::Context::RegisterFactory, "todo: docstring", py::arg("factory"))
.def("RegisterFactory", (void (Urho3D::Context::*)(Urho3D::ObjectFactory *, const char *)) &Urho3D::Context::RegisterFactory, "todo: docstring", py::arg("factory"), py::arg("category"))
.def("RegisterSubsystem", (void (Urho3D::Context::*)(Urho3D::Object *)) &Urho3D::Context::RegisterSubsystem, "todo: docstring", py::arg("object"))
.def("RemoveSubsystem", (void (Urho3D::Context::*)(Urho3D::StringHash)) &Urho3D::Context::RemoveSubsystem, "todo: docstring", py::arg("objectType"))
//.def("RegisterAttribute", (Urho3D::AttributeHandle (Urho3D::Context::*)(Urho3D::StringHash, const Urho3D::AttributeInfo &)) &Urho3D::Context::RegisterAttribute, "todo: docstring", py::arg("objectType"), py::arg("attr"))
//['Urho3D::StringHash', 'Urho3D::AttributeInfo']; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad True, max ptr 0
.def("RemoveAttribute", (void (Urho3D::Context::*)(Urho3D::StringHash, const char *)) &Urho3D::Context::RemoveAttribute, "todo: docstring", py::arg("objectType"), py::arg("name"))
.def("RemoveAllAttributes", (void (Urho3D::Context::*)(Urho3D::StringHash)) &Urho3D::Context::RemoveAllAttributes, "todo: docstring", py::arg("objectType"))
.def("UpdateAttributeDefaultValue", (void (Urho3D::Context::*)(Urho3D::StringHash, const char *, const Urho3D::Variant &)) &Urho3D::Context::UpdateAttributeDefaultValue, "todo: docstring", py::arg("objectType"), py::arg("name"), py::arg("defaultValue"))
.def("GetEventDataMap", (Urho3D::VariantMap & (Urho3D::Context::*)()) &Urho3D::Context::GetEventDataMap, "todo: docstring")
.def("RequireSDL", (bool (Urho3D::Context::*)(unsigned int)) &Urho3D::Context::RequireSDL, "todo: docstring", py::arg("sdlFlags"))
.def("ReleaseSDL", (void (Urho3D::Context::*)()) &Urho3D::Context::ReleaseSDL, "todo: docstring")
.def("RequireIK", (void (Urho3D::Context::*)()) &Urho3D::Context::RequireIK, "todo: docstring")
.def("ReleaseIK", (void (Urho3D::Context::*)()) &Urho3D::Context::ReleaseIK, "todo: docstring")
.def("CopyBaseAttributes", (void (Urho3D::Context::*)(Urho3D::StringHash, Urho3D::StringHash)) &Urho3D::Context::CopyBaseAttributes, "todo: docstring", py::arg("baseType"), py::arg("derivedType"))
.def("GetSubsystem", (Urho3D::Object * (Urho3D::Context::*)(Urho3D::StringHash) const) &Urho3D::Context::GetSubsystem, "todo: docstring", py::arg("type"))
.def("GetGlobalVar", (const Urho3D::Variant & (Urho3D::Context::*)(Urho3D::StringHash) const) &Urho3D::Context::GetGlobalVar, "todo: docstring", py::arg("key"))
.def("GetGlobalVars", (const Urho3D::VariantMap & (Urho3D::Context::*)() const) &Urho3D::Context::GetGlobalVars, "todo: docstring")
.def("SetGlobalVar", (void (Urho3D::Context::*)(Urho3D::StringHash, const Urho3D::Variant &)) &Urho3D::Context::SetGlobalVar, "todo: docstring", py::arg("key"), py::arg("value"))
//.def("GetSubsystems", (const HashMap<Urho3D::StringHash, SharedPtr<Urho3D::Object> > & (Urho3D::Context::*)() const) &Urho3D::Context::GetSubsystems, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
//.def("GetObjectFactories", (const HashMap<Urho3D::StringHash, SharedPtr<Urho3D::ObjectFactory> > & (Urho3D::Context::*)() const) &Urho3D::Context::GetObjectFactories, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
//.def("GetObjectCategories", (const HashMap<Urho3D::String, Vector<Urho3D::StringHash> > & (Urho3D::Context::*)() const) &Urho3D::Context::GetObjectCategories, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
.def("GetEventSender", (Urho3D::Object * (Urho3D::Context::*)() const) &Urho3D::Context::GetEventSender, "todo: docstring")
.def("GetEventHandler", (Urho3D::EventHandler * (Urho3D::Context::*)() const) &Urho3D::Context::GetEventHandler, "todo: docstring")
.def("GetTypeName", (const Urho3D::String & (Urho3D::Context::*)(Urho3D::StringHash) const) &Urho3D::Context::GetTypeName, "todo: docstring", py::arg("objectType"))
//.def("GetAttribute", (Urho3D::AttributeInfo * (Urho3D::Context::*)(Urho3D::StringHash, const char *)) &Urho3D::Context::GetAttribute, "todo: docstring", py::arg("objectType"), py::arg("name"))
//['Urho3D::StringHash', 'char']; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 1
//.def("GetAttributes", (const Vector<Urho3D::AttributeInfo> * (Urho3D::Context::*)(Urho3D::StringHash) const) &Urho3D::Context::GetAttributes, "todo: docstring", py::arg("type"))
//['Urho3D::StringHash']; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 1
//.def("GetNetworkAttributes", (const Vector<Urho3D::AttributeInfo> * (Urho3D::Context::*)(Urho3D::StringHash) const) &Urho3D::Context::GetNetworkAttributes, "todo: docstring", py::arg("type"))
//['Urho3D::StringHash']; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 1
//.def("GetAllAttributes", (const HashMap<Urho3D::StringHash, Vector<Urho3D::AttributeInfo> > & (Urho3D::Context::*)() const) &Urho3D::Context::GetAllAttributes, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
.def("GetEventReceivers", (Urho3D::EventReceiverGroup * (Urho3D::Context::*)(Urho3D::Object *, Urho3D::StringHash)) &Urho3D::Context::GetEventReceivers, "todo: docstring", py::arg("sender"), py::arg("eventType"))
.def("GetEventReceivers", (Urho3D::EventReceiverGroup * (Urho3D::Context::*)(Urho3D::StringHash)) &Urho3D::Context::GetEventReceivers, "todo: docstring", py::arg("eventType"))
// Class Variables:
;
// Class TypeInfo Implementation
pyclass_Var_Urho3D_TypeInfo
.def(py::init<const char *, const Urho3D::TypeInfo *>(), "todo: constructor docstring")
//.def("~TypeInfo", (void (Urho3D::TypeInfo::*)()) &Urho3D::TypeInfo::~TypeInfo, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("IsTypeOf", (bool (Urho3D::TypeInfo::*)(Urho3D::StringHash) const) &Urho3D::TypeInfo::IsTypeOf, "todo: docstring", py::arg("type"))
.def("IsTypeOf", (bool (Urho3D::TypeInfo::*)(const Urho3D::TypeInfo *) const) &Urho3D::TypeInfo::IsTypeOf, "todo: docstring", py::arg("typeInfo"))
.def("GetType", (Urho3D::StringHash (Urho3D::TypeInfo::*)() const) &Urho3D::TypeInfo::GetType, "todo: docstring")
.def("GetTypeName", (const Urho3D::String & (Urho3D::TypeInfo::*)() const) &Urho3D::TypeInfo::GetTypeName, "todo: docstring")
.def("GetBaseTypeInfo", (const Urho3D::TypeInfo * (Urho3D::TypeInfo::*)() const) &Urho3D::TypeInfo::GetBaseTypeInfo, "todo: docstring")
// Class Variables:
;
// Class ObjectFactory Implementation
pyclass_Var_Urho3D_ObjectFactory
//.def(py::init<Urho3D::Context *>(), "todo: constructor docstring")
// Abstract class ObjectFactory -> no init
//.def("CreateObject", (SharedPtr<Urho3D::Object> (Urho3D::ObjectFactory::*)()) &Urho3D::ObjectFactory::CreateObject, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
.def("GetContext", (Urho3D::Context * (Urho3D::ObjectFactory::*)() const) &Urho3D::ObjectFactory::GetContext, "todo: docstring")
.def("GetTypeInfo", (const Urho3D::TypeInfo * (Urho3D::ObjectFactory::*)() const) &Urho3D::ObjectFactory::GetTypeInfo, "todo: docstring")
.def("GetType", (Urho3D::StringHash (Urho3D::ObjectFactory::*)() const) &Urho3D::ObjectFactory::GetType, "todo: docstring")
.def("GetTypeName", (const Urho3D::String & (Urho3D::ObjectFactory::*)() const) &Urho3D::ObjectFactory::GetTypeName, "todo: docstring")
// Class Variables:
;
// Class ScriptEventListener Implementation
pyclass_Var_Urho3D_ScriptEventListener
//.def("~ScriptEventListener", (void (Urho3D::ScriptEventListener::*)()) &Urho3D::ScriptEventListener::~ScriptEventListener, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("AddEventHandler", (void (Urho3D::ScriptEventListener::*)(Urho3D::StringHash, const Urho3D::String &)) &Urho3D::ScriptEventListener::AddEventHandler, "todo: docstring", py::arg("eventType"), py::arg("handlerName"))
.def("AddEventHandler", (void (Urho3D::ScriptEventListener::*)(Urho3D::Object *, Urho3D::StringHash, const Urho3D::String &)) &Urho3D::ScriptEventListener::AddEventHandler, "todo: docstring", py::arg("sender"), py::arg("eventType"), py::arg("handlerName"))
.def("RemoveEventHandler", (void (Urho3D::ScriptEventListener::*)(Urho3D::StringHash)) &Urho3D::ScriptEventListener::RemoveEventHandler, "todo: docstring", py::arg("eventType"))
.def("RemoveEventHandler", (void (Urho3D::ScriptEventListener::*)(Urho3D::Object *, Urho3D::StringHash)) &Urho3D::ScriptEventListener::RemoveEventHandler, "todo: docstring", py::arg("sender"), py::arg("eventType"))
.def("RemoveEventHandlers", (void (Urho3D::ScriptEventListener::*)(Urho3D::Object *)) &Urho3D::ScriptEventListener::RemoveEventHandlers, "todo: docstring", py::arg("sender"))
.def("RemoveEventHandlers", (void (Urho3D::ScriptEventListener::*)()) &Urho3D::ScriptEventListener::RemoveEventHandlers, "todo: docstring")
//.def("RemoveEventHandlersExcept", (void (Urho3D::ScriptEventListener::*)(const Urho3D::PODVector<Urho3D::StringHash> &)) &Urho3D::ScriptEventListener::RemoveEventHandlersExcept, "todo: docstring", py::arg("exceptions"))
//['Urho3D::PODVector<Urho3D::StringHash>']; op False, ctor False, dtor False, variadic False, deleted False, ret bad False, param bad True, max ptr 0
.def("HasEventHandler", (bool (Urho3D::ScriptEventListener::*)(Urho3D::StringHash) const) &Urho3D::ScriptEventListener::HasEventHandler, "todo: docstring", py::arg("eventType"))
.def("HasEventHandler", (bool (Urho3D::ScriptEventListener::*)(Urho3D::Object *, Urho3D::StringHash) const) &Urho3D::ScriptEventListener::HasEventHandler, "todo: docstring", py::arg("sender"), py::arg("eventType"))
// Class Variables:
;
// Class AttributeAccessor Implementation
pyclass_Var_Urho3D_AttributeAccessor
.def("Get", (void (Urho3D::AttributeAccessor::*)(const Urho3D::Serializable *, Urho3D::Variant &) const) &Urho3D::AttributeAccessor::Get, "todo: docstring", py::arg("ptr"), py::arg("dest"))
.def("Set", (void (Urho3D::AttributeAccessor::*)(Urho3D::Serializable *, const Urho3D::Variant &)) &Urho3D::AttributeAccessor::Set, "todo: docstring", py::arg("ptr"), py::arg("src"))
// Class Variables:
;
// Class Deserializer Implementation
pyclass_Var_Urho3D_Deserializer
//.def(py::init<>(), "todo: constructor docstring")
// Abstract class Deserializer -> no init
//.def(py::init<unsigned int>(), "todo: constructor docstring")
// Abstract class Deserializer -> no init
//.def("~Deserializer", (void (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::~Deserializer, "todo: docstring")
//[]; op False, ctor False, dtor True, variadic False, deleted False, ret bad False, param bad False, max ptr 0
.def("Read", (unsigned int (Urho3D::Deserializer::*)(void *, unsigned int)) &Urho3D::Deserializer::Read, "todo: docstring", py::arg("dest"), py::arg("size"))
.def("Seek", (unsigned int (Urho3D::Deserializer::*)(unsigned int)) &Urho3D::Deserializer::Seek, "todo: docstring", py::arg("position"))
.def("GetName", (const Urho3D::String & (Urho3D::Deserializer::*)() const) &Urho3D::Deserializer::GetName, "todo: docstring")
.def("GetChecksum", (unsigned int (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::GetChecksum, "todo: docstring")
.def("IsEof", (bool (Urho3D::Deserializer::*)() const) &Urho3D::Deserializer::IsEof, "todo: docstring")
.def("SeekRelative", (unsigned int (Urho3D::Deserializer::*)(int)) &Urho3D::Deserializer::SeekRelative, "todo: docstring", py::arg("delta"))
.def("GetPosition", (unsigned int (Urho3D::Deserializer::*)() const) &Urho3D::Deserializer::GetPosition, "todo: docstring")
.def("Tell", (unsigned int (Urho3D::Deserializer::*)() const) &Urho3D::Deserializer::Tell, "todo: docstring")
.def("GetSize", (unsigned int (Urho3D::Deserializer::*)() const) &Urho3D::Deserializer::GetSize, "todo: docstring")
.def("ReadInt64", (long long (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadInt64, "todo: docstring")
.def("ReadInt", (int (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadInt, "todo: docstring")
//.def("ReadShort", (short (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadShort, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
//.def("ReadByte", (signed char (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadByte, "todo: docstring")
//[]; op False, ctor False, dtor False, variadic False, deleted False, ret bad True, param bad False, max ptr 0
.def("ReadUInt64", (unsigned long long (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadUInt64, "todo: docstring")
.def("ReadUInt", (unsigned int (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadUInt, "todo: docstring")
.def("ReadUShort", (unsigned short (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadUShort, "todo: docstring")
.def("ReadUByte", (unsigned char (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadUByte, "todo: docstring")
.def("ReadBool", (bool (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadBool, "todo: docstring")
.def("ReadFloat", (float (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadFloat, "todo: docstring")
.def("ReadDouble", (double (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadDouble, "todo: docstring")
.def("ReadIntRect", (Urho3D::IntRect (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadIntRect, "todo: docstring")
.def("ReadIntVector2", (Urho3D::IntVector2 (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadIntVector2, "todo: docstring")
.def("ReadIntVector3", (Urho3D::IntVector3 (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadIntVector3, "todo: docstring")
.def("ReadRect", (Urho3D::Rect (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadRect, "todo: docstring")
.def("ReadVector2", (Urho3D::Vector2 (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadVector2, "todo: docstring")
.def("ReadVector3", (Urho3D::Vector3 (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadVector3, "todo: docstring")
.def("ReadPackedVector3", (Urho3D::Vector3 (Urho3D::Deserializer::*)(float)) &Urho3D::Deserializer::ReadPackedVector3, "todo: docstring", py::arg("maxAbsCoord"))
.def("ReadVector4", (Urho3D::Vector4 (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadVector4, "todo: docstring")
.def("ReadQuaternion", (Urho3D::Quaternion (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadQuaternion, "todo: docstring")
.def("ReadPackedQuaternion", (Urho3D::Quaternion (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadPackedQuaternion, "todo: docstring")
.def("ReadMatrix3", (Urho3D::Matrix3 (Urho3D::Deserializer::*)()) &Urho3D::Deserializer::ReadMatrix3, "todo: docstring")