-
Notifications
You must be signed in to change notification settings - Fork 617
/
Copy pathpy_doc.h
2902 lines (1668 loc) · 112 KB
/
py_doc.h
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
/*
This file contains docstrings for the Python bindings.
Do not edit! These were automatically extracted by mkdoc.py
*/
#define __EXPAND(x) x
#define __COUNT(_1, _2, _3, _4, _5, _6, _7, COUNT, ...) COUNT
#define __VA_SIZE(...) __EXPAND(__COUNT(__VA_ARGS__, 7, 6, 5, 4, 3, 2, 1))
#define __CAT1(a, b) a ## b
#define __CAT2(a, b) __CAT1(a, b)
#define __DOC1(n1) __doc_##n1
#define __DOC2(n1, n2) __doc_##n1##_##n2
#define __DOC3(n1, n2, n3) __doc_##n1##_##n2##_##n3
#define __DOC4(n1, n2, n3, n4) __doc_##n1##_##n2##_##n3##_##n4
#define __DOC5(n1, n2, n3, n4, n5) __doc_##n1##_##n2##_##n3##_##n4##_##n5
#define __DOC6(n1, n2, n3, n4, n5, n6) __doc_##n1##_##n2##_##n3##_##n4##_##n5##_##n6
#define __DOC7(n1, n2, n3, n4, n5, n6, n7) __doc_##n1##_##n2##_##n3##_##n4##_##n5##_##n6##_##n7
#define DOC(...) __EXPAND(__EXPAND(__CAT2(__DOC, __VA_SIZE(__VA_ARGS__)))(__VA_ARGS__))
#if defined(__GNUG__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-variable"
#endif
static const char *__doc_nanogui_AdvancedGridLayout =
R"doc(Advanced Grid layout.
The is a fancier grid layout with support for items that span multiple
rows or columns, and per-widget alignment flags. Each row and column
additionally stores a stretch factor that controls how additional
space is redistributed. The downside of this flexibility is that a
layout anchor data structure must be provided for each widget.
An example:
```
using AdvancedGridLayout::Anchor;
Label *label = new Label(window, "A label");
// Add a centered label at grid position (1, 5), which spans two horizontal cells
layout->setAnchor(label, Anchor(1, 5, 2, 1, Alignment::Middle, Alignment::Middle));
```
The grid is initialized with user-specified column and row size
vectors (which can be expanded later on if desired). If a size value
of zero is specified for a column or row, the size is set to the
maximum preferred size of any widgets contained in the same row or
column. Any remaining space is redistributed according to the row and
column stretch factors.
The high level usage somewhat resembles the classic HIG layout:
- https://web.archive.org/web/20070813221705/http://www.autel.cz/dmi/t
utorial.html - https://github.com/jaapgeurts/higlayout)doc";
static const char *__doc_nanogui_AdvancedGridLayout_AdvancedGridLayout = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor = R"doc(Helper struct to coordinate anchor points for the layout.)doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_Anchor = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_Anchor_2 = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_Anchor_3 = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_align = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_operator_basic_string = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_pos = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_Anchor_size = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_anchor = R"doc(Retrieve the anchor data structure for a given widget)doc";
static const char *__doc_nanogui_AdvancedGridLayout_appendCol = R"doc(Append a column of the given size (and stretch factor))doc";
static const char *__doc_nanogui_AdvancedGridLayout_appendRow = R"doc(Append a row of the given size (and stretch factor))doc";
static const char *__doc_nanogui_AdvancedGridLayout_colCount = R"doc(Return the number of cols)doc";
static const char *__doc_nanogui_AdvancedGridLayout_computeLayout = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_mAnchor = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_mColStretch = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_mCols = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_mMargin = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_mRowStretch = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_mRows = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_margin = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_performLayout = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_preferredSize = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_rowCount = R"doc(Return the number of rows)doc";
static const char *__doc_nanogui_AdvancedGridLayout_setAnchor = R"doc(Specify the anchor data structure for a given widget)doc";
static const char *__doc_nanogui_AdvancedGridLayout_setColStretch = R"doc(Set the stretch factor of a given column)doc";
static const char *__doc_nanogui_AdvancedGridLayout_setMargin = R"doc()doc";
static const char *__doc_nanogui_AdvancedGridLayout_setRowStretch = R"doc(Set the stretch factor of a given row)doc";
static const char *__doc_nanogui_Alignment = R"doc(The different kinds of alignments a layout can perform.)doc";
static const char *__doc_nanogui_Alignment_Fill = R"doc()doc";
static const char *__doc_nanogui_Alignment_Maximum = R"doc()doc";
static const char *__doc_nanogui_Alignment_Middle = R"doc()doc";
static const char *__doc_nanogui_Alignment_Minimum = R"doc()doc";
static const char *__doc_nanogui_Arcball = R"doc(Arcball helper class to interactively rotate objects on-screen.)doc";
static const char *__doc_nanogui_Arcball_Arcball = R"doc()doc";
static const char *__doc_nanogui_Arcball_Arcball_2 = R"doc()doc";
static const char *__doc_nanogui_Arcball_active = R"doc()doc";
static const char *__doc_nanogui_Arcball_button = R"doc()doc";
static const char *__doc_nanogui_Arcball_mActive = R"doc()doc";
static const char *__doc_nanogui_Arcball_mIncr = R"doc()doc";
static const char *__doc_nanogui_Arcball_mLastPos = R"doc()doc";
static const char *__doc_nanogui_Arcball_mQuat = R"doc()doc";
static const char *__doc_nanogui_Arcball_mSize = R"doc()doc";
static const char *__doc_nanogui_Arcball_mSpeedFactor = R"doc()doc";
static const char *__doc_nanogui_Arcball_matrix = R"doc()doc";
static const char *__doc_nanogui_Arcball_motion = R"doc()doc";
static const char *__doc_nanogui_Arcball_setSize = R"doc()doc";
static const char *__doc_nanogui_Arcball_setSpeedFactor = R"doc()doc";
static const char *__doc_nanogui_Arcball_setState = R"doc()doc";
static const char *__doc_nanogui_Arcball_size = R"doc()doc";
static const char *__doc_nanogui_Arcball_speedFactor = R"doc()doc";
static const char *__doc_nanogui_Arcball_state = R"doc()doc";
static const char *__doc_nanogui_BoxLayout =
R"doc(Simple horizontal/vertical box layout
This widget stacks up a bunch of widgets horizontally or vertically.
It adds margins around the entire container and a custom spacing
between adjacent widgets.)doc";
static const char *__doc_nanogui_BoxLayout_BoxLayout =
R"doc(Construct a box layout which packs widgets in the given
``Orientation``
Parameter ``alignment``:
Widget alignment perpendicular to the chosen orientation
Parameter ``margin``:
Margin around the layout container
Parameter ``spacing``:
Extra spacing placed between widgets)doc";
static const char *__doc_nanogui_BoxLayout_alignment = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_mAlignment = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_mMargin = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_mOrientation = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_mSpacing = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_margin = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_orientation = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_performLayout = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_preferredSize = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_setAlignment = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_setMargin = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_setOrientation = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_setSpacing = R"doc()doc";
static const char *__doc_nanogui_BoxLayout_spacing = R"doc()doc";
static const char *__doc_nanogui_Button = R"doc([Normal/Toggle/Radio/Popup] Button widget.)doc";
static const char *__doc_nanogui_Button_Button = R"doc()doc";
static const char *__doc_nanogui_Button_Flags = R"doc(Flags to specify the button behavior (can be combined with binary OR))doc";
static const char *__doc_nanogui_Button_Flags_NormalButton = R"doc()doc";
static const char *__doc_nanogui_Button_Flags_PopupButton = R"doc()doc";
static const char *__doc_nanogui_Button_Flags_RadioButton = R"doc()doc";
static const char *__doc_nanogui_Button_Flags_ToggleButton = R"doc()doc";
static const char *__doc_nanogui_Button_IconPosition = R"doc(The available icon positions.)doc";
static const char *__doc_nanogui_Button_IconPosition_Left = R"doc()doc";
static const char *__doc_nanogui_Button_IconPosition_LeftCentered = R"doc()doc";
static const char *__doc_nanogui_Button_IconPosition_Right = R"doc()doc";
static const char *__doc_nanogui_Button_IconPosition_RightCentered = R"doc()doc";
static const char *__doc_nanogui_Button_backgroundColor = R"doc()doc";
static const char *__doc_nanogui_Button_buttonGroup = R"doc()doc";
static const char *__doc_nanogui_Button_callback = R"doc(Set the push callback (for any type of button))doc";
static const char *__doc_nanogui_Button_caption = R"doc()doc";
static const char *__doc_nanogui_Button_changeCallback = R"doc(Set the change callback (for toggle buttons))doc";
static const char *__doc_nanogui_Button_draw = R"doc()doc";
static const char *__doc_nanogui_Button_flags = R"doc()doc";
static const char *__doc_nanogui_Button_icon = R"doc()doc";
static const char *__doc_nanogui_Button_iconPosition = R"doc()doc";
static const char *__doc_nanogui_Button_load = R"doc()doc";
static const char *__doc_nanogui_Button_mBackgroundColor = R"doc()doc";
static const char *__doc_nanogui_Button_mButtonGroup = R"doc()doc";
static const char *__doc_nanogui_Button_mCallback = R"doc()doc";
static const char *__doc_nanogui_Button_mCaption = R"doc()doc";
static const char *__doc_nanogui_Button_mChangeCallback = R"doc()doc";
static const char *__doc_nanogui_Button_mFlags = R"doc()doc";
static const char *__doc_nanogui_Button_mIcon = R"doc()doc";
static const char *__doc_nanogui_Button_mIconPosition = R"doc()doc";
static const char *__doc_nanogui_Button_mPushed = R"doc()doc";
static const char *__doc_nanogui_Button_mTextColor = R"doc()doc";
static const char *__doc_nanogui_Button_mouseButtonEvent = R"doc()doc";
static const char *__doc_nanogui_Button_preferredSize = R"doc()doc";
static const char *__doc_nanogui_Button_pushed = R"doc()doc";
static const char *__doc_nanogui_Button_save = R"doc()doc";
static const char *__doc_nanogui_Button_setBackgroundColor = R"doc()doc";
static const char *__doc_nanogui_Button_setButtonGroup = R"doc(Set the button group (for radio buttons))doc";
static const char *__doc_nanogui_Button_setCallback = R"doc()doc";
static const char *__doc_nanogui_Button_setCaption = R"doc()doc";
static const char *__doc_nanogui_Button_setChangeCallback = R"doc()doc";
static const char *__doc_nanogui_Button_setFlags = R"doc()doc";
static const char *__doc_nanogui_Button_setIcon = R"doc()doc";
static const char *__doc_nanogui_Button_setIconPosition = R"doc()doc";
static const char *__doc_nanogui_Button_setPushed = R"doc()doc";
static const char *__doc_nanogui_Button_setTextColor = R"doc()doc";
static const char *__doc_nanogui_Button_textColor = R"doc()doc";
static const char *__doc_nanogui_CheckBox = R"doc(Two-state check box widget.)doc";
static const char *__doc_nanogui_CheckBox_CheckBox = R"doc()doc";
static const char *__doc_nanogui_CheckBox_callback = R"doc()doc";
static const char *__doc_nanogui_CheckBox_caption = R"doc()doc";
static const char *__doc_nanogui_CheckBox_checked = R"doc()doc";
static const char *__doc_nanogui_CheckBox_draw = R"doc()doc";
static const char *__doc_nanogui_CheckBox_load = R"doc()doc";
static const char *__doc_nanogui_CheckBox_mCallback = R"doc()doc";
static const char *__doc_nanogui_CheckBox_mCaption = R"doc()doc";
static const char *__doc_nanogui_CheckBox_mChecked = R"doc()doc";
static const char *__doc_nanogui_CheckBox_mPushed = R"doc()doc";
static const char *__doc_nanogui_CheckBox_mouseButtonEvent = R"doc()doc";
static const char *__doc_nanogui_CheckBox_preferredSize = R"doc()doc";
static const char *__doc_nanogui_CheckBox_pushed = R"doc()doc";
static const char *__doc_nanogui_CheckBox_save = R"doc()doc";
static const char *__doc_nanogui_CheckBox_setCallback = R"doc()doc";
static const char *__doc_nanogui_CheckBox_setCaption = R"doc()doc";
static const char *__doc_nanogui_CheckBox_setChecked = R"doc()doc";
static const char *__doc_nanogui_CheckBox_setPushed = R"doc()doc";
static const char *__doc_nanogui_Color =
R"doc(Stores an RGBA floating point color value.
This class simply wraps around an ``Eigen::Vector4f``, providing some
convenient methods and terminology for thinking of it as a color. The
data operates in the same way as ``Eigen::Vector4f``, and the
following values are identical:
```
+---------+-------------+-----------------------+-------------+
| Channel | Array Index | Eigen::Vector4f Value | Color Value |
+=========+=============+=======================+=============+
| Red | ``0`` | x() | r() |
+---------+-------------+-----------------------+-------------+
| Green | ``1`` | y() | g() |
+---------+-------------+-----------------------+-------------+
| Blue | ``2`` | z() | b() |
+---------+-------------+-----------------------+-------------+
| Alpha | ``3`` | w() | w() |
+---------+-------------+-----------------------+-------------+
Note:
The method for the alpha component is **always** ``w()``.
```
You can and should still use the various convenience methods such as
``any()``, ``all()``, ``head<index>()``, etc provided by Eigen.)doc";
static const char *__doc_nanogui_ColorPicker = R"doc(Push button with a popup to tweak a color value.)doc";
static const char *__doc_nanogui_ColorPicker_ColorPicker = R"doc()doc";
static const char *__doc_nanogui_ColorPicker_callback = R"doc(Set the change callback)doc";
static const char *__doc_nanogui_ColorPicker_color = R"doc(Get the current color)doc";
static const char *__doc_nanogui_ColorPicker_mCallback = R"doc()doc";
static const char *__doc_nanogui_ColorPicker_mColorWheel = R"doc()doc";
static const char *__doc_nanogui_ColorPicker_mPickButton = R"doc()doc";
static const char *__doc_nanogui_ColorPicker_setCallback = R"doc()doc";
static const char *__doc_nanogui_ColorPicker_setColor = R"doc(Set the current color)doc";
static const char *__doc_nanogui_ColorWheel = R"doc(Fancy analog widget to select a color value.)doc";
static const char *__doc_nanogui_ColorWheel_ColorWheel = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_Region = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_Region_Both = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_Region_InnerTriangle = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_Region_None = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_Region_OuterCircle = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_adjustPosition = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_callback = R"doc(Set the change callback)doc";
static const char *__doc_nanogui_ColorWheel_color = R"doc(Get the current color)doc";
static const char *__doc_nanogui_ColorWheel_draw = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_hue2rgb = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_load = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mBlack = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mCallback = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mDragRegion = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mHue = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mWhite = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mouseButtonEvent = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_mouseDragEvent = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_preferredSize = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_save = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_setCallback = R"doc()doc";
static const char *__doc_nanogui_ColorWheel_setColor = R"doc(Set the current color)doc";
static const char *__doc_nanogui_Color_Color = R"doc(Default constructor: represents black (``r, g, b, a = 0``))doc";
static const char *__doc_nanogui_Color_Color_10 =
R"doc(Explicit constructor: creates the Color ``(r, g, b, a)``.
Parameter ``r``:
The red component of the color.
Parameter ``g``:
The green component of the color.
Parameter ``b``:
The blue component of the color.
Parameter ``a``:
The alpha component of the color.)doc";
static const char *__doc_nanogui_Color_Color_11 =
R"doc(Explicit constructor: creates the Color ``(r, g, b, a) / 255.0``.
Values are casted to floats before division.
Parameter ``r``:
The red component of the color, will be divided by ``255.0``.
Parameter ``g``:
The green component of the color, will be divided by ``255.0``.
Parameter ``b``:
The blue component of the color, will be divided by ``255.0``.
Parameter ``a``:
The alpha component of the color, will be divided by ``255.0``.)doc";
static const char *__doc_nanogui_Color_Color_12 =
R"doc(Construct a color vector from MatrixBase (needed to play nice with
Eigen))doc";
static const char *__doc_nanogui_Color_Color_2 =
R"doc(Makes an exact copy of the data represented by the input parameter.
Parameter ``color``:
The four dimensional float vector being copied.)doc";
static const char *__doc_nanogui_Color_Color_3 =
R"doc(Copies (x, y, z) from the input vector, and uses the value specified
by the ``alpha`` parameter for this Color object's alpha component.
Parameter ``color``:
The three dimensional float vector being copied.
Parameter ``alpha``:
The value to set this object's alpha component to.)doc";
static const char *__doc_nanogui_Color_Color_4 =
R"doc(Copies (x, y, z) from the input vector, casted as floats first and
then divided by ``255.0``, and uses the value specified by the
``alpha`` parameter, casted to a float and divided by ``255.0`` as
well, for this Color object's alpha component.
Parameter ``color``:
The three dimensional integer vector being copied, will be divided
by ``255.0``.
Parameter ``alpha``:
The value to set this object's alpha component to, will be divided
by ``255.0``.)doc";
static const char *__doc_nanogui_Color_Color_5 =
R"doc(Copies (x, y, z) from the input vector, and sets the alpha of this
color to be ``1.0``.
Parameter ``color``:
The three dimensional float vector being copied.)doc";
static const char *__doc_nanogui_Color_Color_6 =
R"doc(Copies (x, y, z) from the input vector, casting to floats and dividing
by ``255.0``. The alpha of this color will be set to ``1.0``.
Parameter ``color``:
The three dimensional integer vector being copied, will be divided
by ``255.0``.)doc";
static const char *__doc_nanogui_Color_Color_7 =
R"doc(Copies (x, y, z, w) from the input vector, casting to floats and
dividing by ``255.0``.
Parameter ``color``:
The three dimensional integer vector being copied, will be divided
by ``255.0``.)doc";
static const char *__doc_nanogui_Color_Color_8 =
R"doc(Creates the Color ``(intensity, intensity, intensity, alpha)``.
Parameter ``intensity``:
The value to be used for red, green, and blue.
Parameter ``alpha``:
The alpha component of the color.)doc";
static const char *__doc_nanogui_Color_Color_9 =
R"doc(Creates the Color ``(intensity, intensity, intensity, alpha) /
255.0``. Values are casted to floats before division.
Parameter ``intensity``:
The value to be used for red, green, and blue, will be divided by
``255.0``.
Parameter ``alpha``:
The alpha component of the color, will be divided by ``255.0``.)doc";
static const char *__doc_nanogui_Color_b = R"doc(Return a reference to the blue channel)doc";
static const char *__doc_nanogui_Color_b_2 = R"doc(Return a reference to the blue channel (const version))doc";
static const char *__doc_nanogui_Color_contrastingColor =
R"doc(Computes the luminance as ``l = 0.299r + 0.587g + 0.144b + 0.0a``. If
the luminance is less than 0.5, white is returned. If the luminance is
greater than or equal to 0.5, black is returned. Both returns will
have an alpha component of 1.0.)doc";
static const char *__doc_nanogui_Color_g = R"doc(Return a reference to the green channel)doc";
static const char *__doc_nanogui_Color_g_2 = R"doc(Return a reference to the green channel (const version))doc";
static const char *__doc_nanogui_Color_operator_assign = R"doc(Assign a color vector from MatrixBase (needed to play nice with Eigen))doc";
static const char *__doc_nanogui_Color_operator_const_NVGcolor = R"doc(Allows for conversion between this Color and NanoVG's representation.)doc";
static const char *__doc_nanogui_Color_r = R"doc(Return a reference to the red channel)doc";
static const char *__doc_nanogui_Color_r_2 = R"doc(Return a reference to the red channel (const version))doc";
static const char *__doc_nanogui_ComboBox = R"doc(Simple combo box widget based on a popup button.)doc";
static const char *__doc_nanogui_ComboBox_ComboBox = R"doc(Create an empty combo box)doc";
static const char *__doc_nanogui_ComboBox_ComboBox_2 = R"doc(Create a new combo box with the given items)doc";
static const char *__doc_nanogui_ComboBox_ComboBox_3 =
R"doc(Create a new combo box with the given items, providing both short and
long descriptive labels for each item)doc";
static const char *__doc_nanogui_ComboBox_callback = R"doc()doc";
static const char *__doc_nanogui_ComboBox_items = R"doc()doc";
static const char *__doc_nanogui_ComboBox_itemsShort = R"doc()doc";
static const char *__doc_nanogui_ComboBox_load = R"doc()doc";
static const char *__doc_nanogui_ComboBox_mCallback = R"doc()doc";
static const char *__doc_nanogui_ComboBox_mItems = R"doc()doc";
static const char *__doc_nanogui_ComboBox_mItemsShort = R"doc()doc";
static const char *__doc_nanogui_ComboBox_mSelectedIndex = R"doc()doc";
static const char *__doc_nanogui_ComboBox_save = R"doc()doc";
static const char *__doc_nanogui_ComboBox_scrollEvent = R"doc()doc";
static const char *__doc_nanogui_ComboBox_selectedIndex = R"doc()doc";
static const char *__doc_nanogui_ComboBox_setCallback = R"doc()doc";
static const char *__doc_nanogui_ComboBox_setItems = R"doc()doc";
static const char *__doc_nanogui_ComboBox_setItems_2 = R"doc()doc";
static const char *__doc_nanogui_ComboBox_setSelectedIndex = R"doc()doc";
static const char *__doc_nanogui_Cursor = R"doc(Cursor shapes available to use in GLFW.)doc";
static const char *__doc_nanogui_Cursor_Arrow = R"doc()doc";
static const char *__doc_nanogui_Cursor_Crosshair = R"doc()doc";
static const char *__doc_nanogui_Cursor_CursorCount =
R"doc(Not a cursor --- should always be last: enables a loop over the cursor
types.)doc";
static const char *__doc_nanogui_Cursor_HResize = R"doc()doc";
static const char *__doc_nanogui_Cursor_Hand = R"doc()doc";
static const char *__doc_nanogui_Cursor_IBeam = R"doc()doc";
static const char *__doc_nanogui_Cursor_VResize = R"doc()doc";
static const char *__doc_nanogui_FloatBox =
R"doc(A specialization of TextBox representing floating point values.
Template parameters should be float types, e.g. ``float``, ``double``,
``float64_t``, etc.)doc";
static const char *__doc_nanogui_FloatBox_FloatBox = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mMaxValue = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mMinValue = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mMouseDownValue = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mNumberFormat = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mValueIncrement = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mouseButtonEvent = R"doc()doc";
static const char *__doc_nanogui_FloatBox_mouseDragEvent = R"doc()doc";
static const char *__doc_nanogui_FloatBox_numberFormat = R"doc()doc";
static const char *__doc_nanogui_FloatBox_numberFormat_2 = R"doc()doc";
static const char *__doc_nanogui_FloatBox_scrollEvent = R"doc()doc";
static const char *__doc_nanogui_FloatBox_setCallback = R"doc()doc";
static const char *__doc_nanogui_FloatBox_setMaxValue = R"doc()doc";
static const char *__doc_nanogui_FloatBox_setMinMaxValues = R"doc()doc";
static const char *__doc_nanogui_FloatBox_setMinValue = R"doc()doc";
static const char *__doc_nanogui_FloatBox_setValue = R"doc()doc";
static const char *__doc_nanogui_FloatBox_setValueIncrement = R"doc()doc";
static const char *__doc_nanogui_FloatBox_value = R"doc()doc";
static const char *__doc_nanogui_FormHelper =
R"doc(Convenience class to create simple AntTweakBar-style layouts that
expose variables of various types using NanoGUI widgets
**Example**:
```
// [ ... initialize NanoGUI, construct screen ... ]
FormHelper* h = new FormHelper(screen);
// Add a new windows widget
h->addWindow(Eigen::Vector2i(10,10),"Menu");
// Start a new group
h->addGroup("Group 1");
// Expose an integer variable by reference
h->addVariable("integer variable", aInt);
// Expose a float variable via setter/getter functions
h->addVariable(
[&](float value) { aFloat = value; },
[&]() { return *aFloat; },
"float variable");
// add a new button
h->addButton("Button", [&]() { std::cout << "Button pressed" << std::endl; });
```)doc";
static const char *__doc_nanogui_FormHelper_FormHelper = R"doc(Create a helper class to construct NanoGUI widgets on the given screen)doc";
static const char *__doc_nanogui_FormHelper_addButton = R"doc(Add a button with a custom callback)doc";
static const char *__doc_nanogui_FormHelper_addGroup = R"doc(Add a new group that may contain several sub-widgets)doc";
static const char *__doc_nanogui_FormHelper_addVariable = R"doc(Add a new data widget controlled using custom getter/setter functions)doc";
static const char *__doc_nanogui_FormHelper_addVariable_2 = R"doc(Add a new data widget that exposes a raw variable in memory)doc";
static const char *__doc_nanogui_FormHelper_addWidget = R"doc(Add an arbitrary (optionally labeled) widget to the layout)doc";
static const char *__doc_nanogui_FormHelper_addWindow = R"doc(Add a new top-level window)doc";
static const char *__doc_nanogui_FormHelper_fixedSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_groupFontName = R"doc()doc";
static const char *__doc_nanogui_FormHelper_groupFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_labelFontName = R"doc()doc";
static const char *__doc_nanogui_FormHelper_labelFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mFixedSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mGroupFontName = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mGroupFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mLabelFontName = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mLabelFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mLayout = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mPostGroupSpacing = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mPreGroupSpacing = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mRefreshCallbacks = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mScreen = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mVariableSpacing = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mWidgetFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_mWindow = R"doc()doc";
static const char *__doc_nanogui_FormHelper_refresh = R"doc(Cause all widgets to re-synchronize with the underlying variable state)doc";
static const char *__doc_nanogui_FormHelper_setFixedSize = R"doc(Specify a fixed size for newly added widgets)doc";
static const char *__doc_nanogui_FormHelper_setGroupFontName = R"doc()doc";
static const char *__doc_nanogui_FormHelper_setGroupFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_setLabelFontName = R"doc()doc";
static const char *__doc_nanogui_FormHelper_setLabelFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_setWidgetFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_setWindow = R"doc()doc";
static const char *__doc_nanogui_FormHelper_widgetFontSize = R"doc()doc";
static const char *__doc_nanogui_FormHelper_window = R"doc(Access the currently active Window instance)doc";
static const char *__doc_nanogui_GLCanvas =
R"doc(Canvas widget for rendering OpenGL content
Canvas widget that can be used to display arbitrary OpenGL content.
This is useful to display and manipulate 3D objects as part of an
interactive application. The implementation uses scissoring to ensure
that rendered objects don't spill into neighboring widgets.
Usage: override `drawGL` in subclasses to provide custom drawing code.)doc";
static const char *__doc_nanogui_GLCanvas_GLCanvas = R"doc()doc";
static const char *__doc_nanogui_GLCanvas_backgroundColor = R"doc(Return the background color)doc";
static const char *__doc_nanogui_GLCanvas_draw = R"doc(Draw the canvas)doc";
static const char *__doc_nanogui_GLCanvas_drawBorder = R"doc(Return whether the widget border gets drawn or not)doc";
static const char *__doc_nanogui_GLCanvas_drawGL = R"doc(Draw the GL scene. Override this method to draw the actual GL content.)doc";
static const char *__doc_nanogui_GLCanvas_drawWidgetBorder = R"doc(Internal helper function for drawing the widget border)doc";
static const char *__doc_nanogui_GLCanvas_load = R"doc()doc";
static const char *__doc_nanogui_GLCanvas_mBackgroundColor = R"doc()doc";
static const char *__doc_nanogui_GLCanvas_mDrawBorder = R"doc()doc";
static const char *__doc_nanogui_GLCanvas_save = R"doc(Save and load widget properties)doc";
static const char *__doc_nanogui_GLCanvas_setBackgroundColor = R"doc(Set the background color)doc";
static const char *__doc_nanogui_GLCanvas_setDrawBorder = R"doc(Set whether to draw the widget border or not)doc";
static const char *__doc_nanogui_GLFramebuffer = R"doc(Helper class for creating framebuffer objects.)doc";
static const char *__doc_nanogui_GLFramebuffer_GLFramebuffer = R"doc(Default constructor: unusable until you call the ``init()`` method)doc";
static const char *__doc_nanogui_GLFramebuffer_bind = R"doc(Bind the framebuffer object)doc";
static const char *__doc_nanogui_GLFramebuffer_blit = R"doc(Blit the framebuffer object onto the screen)doc";
static const char *__doc_nanogui_GLFramebuffer_downloadTGA =
R"doc(Quick and dirty method to write a TGA (32bpp RGBA) file of the
framebuffer contents for debugging)doc";
static const char *__doc_nanogui_GLFramebuffer_free = R"doc(Release all associated resources)doc";
static const char *__doc_nanogui_GLFramebuffer_init =
R"doc(Create a new framebuffer with the specified size and number of MSAA
samples)doc";
static const char *__doc_nanogui_GLFramebuffer_mColor = R"doc()doc";
static const char *__doc_nanogui_GLFramebuffer_mDepth = R"doc()doc";
static const char *__doc_nanogui_GLFramebuffer_mFramebuffer = R"doc()doc";
static const char *__doc_nanogui_GLFramebuffer_mSamples = R"doc()doc";
static const char *__doc_nanogui_GLFramebuffer_mSize = R"doc()doc";
static const char *__doc_nanogui_GLFramebuffer_ready = R"doc(Return whether or not the framebuffer object has been initialized)doc";
static const char *__doc_nanogui_GLFramebuffer_release = R"doc(Release/unbind the framebuffer object)doc";
static const char *__doc_nanogui_GLFramebuffer_samples = R"doc(Return the number of MSAA samples)doc";
static const char *__doc_nanogui_GLShader =
R"doc(Helper class for compiling and linking OpenGL shaders and uploading
associated vertex and index buffers from Eigen matrices.)doc";
static const char *__doc_nanogui_GLShader_Buffer =
R"doc(A wrapper struct for maintaining various aspects of items being
managed by OpenGL.)doc";
static const char *__doc_nanogui_GLShader_Buffer_compSize = R"doc()doc";
static const char *__doc_nanogui_GLShader_Buffer_dim = R"doc()doc";
static const char *__doc_nanogui_GLShader_Buffer_glType = R"doc()doc";
static const char *__doc_nanogui_GLShader_Buffer_id = R"doc()doc";
static const char *__doc_nanogui_GLShader_Buffer_size = R"doc()doc";
static const char *__doc_nanogui_GLShader_Buffer_version = R"doc()doc";
static const char *__doc_nanogui_GLShader_GLShader = R"doc(Create an unitialized OpenGL shader)doc";
static const char *__doc_nanogui_GLShader_attrib =
R"doc(Return the handle of a named shader attribute (-1 if it does not
exist))doc";
static const char *__doc_nanogui_GLShader_attribVersion = R"doc(Return the version number of a given attribute)doc";
static const char *__doc_nanogui_GLShader_bind = R"doc(Select this shader for subsequent draw calls)doc";
static const char *__doc_nanogui_GLShader_bufferSize = R"doc(Return the size of all registered buffers in bytes)doc";
static const char *__doc_nanogui_GLShader_define = R"doc(Set a preprocessor definition)doc";
static const char *__doc_nanogui_GLShader_downloadAttrib = R"doc(Download a vertex buffer object into an Eigen matrix)doc";
static const char *__doc_nanogui_GLShader_downloadAttrib_2 = R"doc()doc";
static const char *__doc_nanogui_GLShader_drawArray = R"doc(Draw a sequence of primitives)doc";
static const char *__doc_nanogui_GLShader_drawIndexed = R"doc(Draw a sequence of primitives using a previously uploaded index buffer)doc";
static const char *__doc_nanogui_GLShader_free = R"doc(Release underlying OpenGL objects)doc";
static const char *__doc_nanogui_GLShader_freeAttrib = R"doc(Completely free an existing attribute buffer)doc";
static const char *__doc_nanogui_GLShader_hasAttrib = R"doc(Check if an attribute was registered a given name)doc";
static const char *__doc_nanogui_GLShader_init =
R"doc(Initialize the shader using the specified source strings.
Parameter ``name``:
The name this shader will be registered as.
Parameter ``vertex_str``:
The source of the vertex shader as a string.
Parameter ``fragment_str``:
The source of the fragment shader as a string.
Parameter ``geometry_str``:
The source of the geometry shader as a string. The default value
is the empty string, which indicates no geometry shader will be
used.)doc";
static const char *__doc_nanogui_GLShader_initFromFiles =
R"doc(Initialize the shader using the specified files on disk.
Parameter ``name``:
The name this shader will be registered as.
Parameter ``vertex_fname``:
The path to the file containing the source of the fragment shader.
Parameter ``fragment_fname``:
The path to the file containing the source of the vertex shader.
Parameter ``geometry_fname``:
The path to the file containing the source of the geometry shader.
The default value is the empty string, which indicates no geometry
shader will be used.)doc";
static const char *__doc_nanogui_GLShader_invalidateAttribs = R"doc(Invalidate the version numbers associated with attribute data)doc";
static const char *__doc_nanogui_GLShader_mBufferObjects = R"doc()doc";
static const char *__doc_nanogui_GLShader_mDefinitions = R"doc()doc";
static const char *__doc_nanogui_GLShader_mFragmentShader = R"doc()doc";
static const char *__doc_nanogui_GLShader_mGeometryShader = R"doc()doc";
static const char *__doc_nanogui_GLShader_mName = R"doc()doc";
static const char *__doc_nanogui_GLShader_mProgramShader = R"doc()doc";
static const char *__doc_nanogui_GLShader_mVertexArrayObject = R"doc()doc";
static const char *__doc_nanogui_GLShader_mVertexShader = R"doc()doc";
static const char *__doc_nanogui_GLShader_name = R"doc(Return the name of the shader)doc";
static const char *__doc_nanogui_GLShader_resetAttribVersion = R"doc(Reset the version number of a given attribute)doc";
static const char *__doc_nanogui_GLShader_setUniform = R"doc(Initialize a uniform parameter with a 4x4 matrix (float))doc";
static const char *__doc_nanogui_GLShader_setUniform_10 = R"doc(Initialize a uniform buffer with a uniform buffer object)doc";
static const char *__doc_nanogui_GLShader_setUniform_2 = R"doc(Initialize a uniform parameter with an integer value)doc";
static const char *__doc_nanogui_GLShader_setUniform_3 = R"doc(Initialize a uniform parameter with a floating point value)doc";
static const char *__doc_nanogui_GLShader_setUniform_4 = R"doc(Initialize a uniform parameter with a 2D vector (int))doc";
static const char *__doc_nanogui_GLShader_setUniform_5 = R"doc(Initialize a uniform parameter with a 2D vector (float))doc";
static const char *__doc_nanogui_GLShader_setUniform_6 = R"doc(Initialize a uniform parameter with a 3D vector (int))doc";
static const char *__doc_nanogui_GLShader_setUniform_7 = R"doc(Initialize a uniform parameter with a 3D vector (float))doc";
static const char *__doc_nanogui_GLShader_setUniform_8 = R"doc(Initialize a uniform parameter with a 4D vector (int))doc";
static const char *__doc_nanogui_GLShader_setUniform_9 = R"doc(Initialize a uniform parameter with a 4D vector (float))doc";
static const char *__doc_nanogui_GLShader_shareAttrib =
R"doc(Create a symbolic link to an attribute of another GLShader. This
avoids duplicating unnecessary data)doc";
static const char *__doc_nanogui_GLShader_uniform = R"doc(Return the handle of a uniform attribute (-1 if it does not exist))doc";
static const char *__doc_nanogui_GLShader_uploadAttrib =
R"doc(Upload an Eigen matrix as a vertex buffer object (refreshing it as
needed))doc";
static const char *__doc_nanogui_GLShader_uploadAttrib_2 = R"doc()doc";
static const char *__doc_nanogui_GLShader_uploadIndices = R"doc(Upload an index buffer)doc";
static const char *__doc_nanogui_GLUniformBuffer = R"doc(Helper class for creating OpenGL Uniform Buffer objects.)doc";
static const char *__doc_nanogui_GLUniformBuffer_GLUniformBuffer = R"doc(Default constructor: unusable until you call the ``init()`` method)doc";
static const char *__doc_nanogui_GLUniformBuffer_bind = R"doc(Bind the uniform buffer to a specific binding point)doc";
static const char *__doc_nanogui_GLUniformBuffer_free = R"doc(Release underlying OpenGL object)doc";
static const char *__doc_nanogui_GLUniformBuffer_getBindingPoint = R"doc(Return the binding point of this uniform buffer)doc";
static const char *__doc_nanogui_GLUniformBuffer_init = R"doc(Create a new uniform buffer)doc";
static const char *__doc_nanogui_GLUniformBuffer_mBindingPoint = R"doc()doc";
static const char *__doc_nanogui_GLUniformBuffer_mID = R"doc()doc";
static const char *__doc_nanogui_GLUniformBuffer_release = R"doc(Release/unbind the uniform buffer)doc";
static const char *__doc_nanogui_GLUniformBuffer_update = R"doc(Update content on the GPU using data)doc";
static const char *__doc_nanogui_Graph = R"doc(Simple graph widget for showing a function plot.)doc";
static const char *__doc_nanogui_Graph_Graph = R"doc()doc";
static const char *__doc_nanogui_Graph_backgroundColor = R"doc()doc";
static const char *__doc_nanogui_Graph_caption = R"doc()doc";
static const char *__doc_nanogui_Graph_draw = R"doc()doc";
static const char *__doc_nanogui_Graph_footer = R"doc()doc";
static const char *__doc_nanogui_Graph_foregroundColor = R"doc()doc";