py-imgui-redux 4.0.1__cp310-cp310-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1305 @@
1
+ """ImPlot Library"""
2
+ from __future__ import annotations
3
+ import imgui.implot
4
+ import typing
5
+ import imgui
6
+
7
+ __all__ = [
8
+ "AddColorMap",
9
+ "Annotation",
10
+ "Axis",
11
+ "AxisFlags",
12
+ "BarGroupsFlags",
13
+ "BarsFlags",
14
+ "BeginAlignedPlots",
15
+ "BeginDragDropSourceAxis",
16
+ "BeginDragDropSourceItem",
17
+ "BeginDragDropSourcePlot",
18
+ "BeginDragDropTargetAxis",
19
+ "BeginDragDropTargetLegend",
20
+ "BeginDragDropTargetPlot",
21
+ "BeginLegendPopup",
22
+ "BeginPlot",
23
+ "BeginSubplots",
24
+ "Bin",
25
+ "BustColorCache",
26
+ "CancelPlotSelection",
27
+ "Col",
28
+ "ColormapButton",
29
+ "ColormapEnum",
30
+ "ColormapIcon",
31
+ "ColormapScale",
32
+ "ColormapScaleFlags",
33
+ "ColormapSlider",
34
+ "Cond",
35
+ "Context",
36
+ "CreateContext",
37
+ "DestroyContext",
38
+ "DigitalFlags",
39
+ "DragLineX",
40
+ "DragLineY",
41
+ "DragPoint",
42
+ "DragRect",
43
+ "DragToolFlags",
44
+ "DummyFlags",
45
+ "EndAlignedPlots",
46
+ "EndDragDropSource",
47
+ "EndDragDropTarget",
48
+ "EndLegendPopup",
49
+ "EndPlot",
50
+ "EndSubplots",
51
+ "ErrorBarsFlags",
52
+ "GetColormapColor",
53
+ "GetColormapCount",
54
+ "GetColormapIndex",
55
+ "GetColormapName",
56
+ "GetColormapSize",
57
+ "GetCurrentContext",
58
+ "GetInputMap",
59
+ "GetLastItemColor",
60
+ "GetMarkerName",
61
+ "GetPlotDrawList",
62
+ "GetPlotLimits",
63
+ "GetPlotMousePos",
64
+ "GetPlotPos",
65
+ "GetPlotSelection",
66
+ "GetPlotSize",
67
+ "GetStyle",
68
+ "GetStyleColorName",
69
+ "HeatmapFlags",
70
+ "HideNextItem",
71
+ "HistogramFlags",
72
+ "ImageFlags",
73
+ "InfLinesFlags",
74
+ "InputMap",
75
+ "IsAxisHovered",
76
+ "IsLegendEntryHovered",
77
+ "IsPlotHovered",
78
+ "IsPlotSelected",
79
+ "IsSubplotsHovered",
80
+ "ItemFlags",
81
+ "ItemIcon",
82
+ "LegendFlags",
83
+ "LineFlags",
84
+ "Location",
85
+ "MapInputDefault",
86
+ "MapInputReverse",
87
+ "Marker",
88
+ "MouseTextFlags",
89
+ "NextColormapColor",
90
+ "PieChartFlags",
91
+ "PixelsToPlot",
92
+ "PlotBarGroups",
93
+ "PlotBars",
94
+ "PlotDigital",
95
+ "PlotDummy",
96
+ "PlotErrorBars",
97
+ "PlotFlags",
98
+ "PlotHeatmap",
99
+ "PlotHistogram",
100
+ "PlotHistogram2D",
101
+ "PlotImage",
102
+ "PlotInfLines",
103
+ "PlotLine",
104
+ "PlotPieChart",
105
+ "PlotScatter",
106
+ "PlotShaded",
107
+ "PlotStairs",
108
+ "PlotStems",
109
+ "PlotStyle",
110
+ "PlotText",
111
+ "PlotToPixels",
112
+ "Point",
113
+ "PopColormap",
114
+ "PopPlotClipRect",
115
+ "PopStyleColor",
116
+ "PopStyleVar",
117
+ "PushColormap",
118
+ "PushPlotClipRect",
119
+ "PushStyleColor",
120
+ "PushStyleVar",
121
+ "Range",
122
+ "Rect",
123
+ "SampleColormap",
124
+ "Scale",
125
+ "ScatterFlags",
126
+ "SetAxes",
127
+ "SetAxis",
128
+ "SetCurrentContext",
129
+ "SetNextAxesLimits",
130
+ "SetNextAxesToFit",
131
+ "SetNextAxisLimits",
132
+ "SetNextAxisLinks",
133
+ "SetNextAxisToFit",
134
+ "SetNextErrorBarStyle",
135
+ "SetNextFillStyle",
136
+ "SetNextLineStyle",
137
+ "SetNextMarkerStyle",
138
+ "SetupAxes",
139
+ "SetupAxesLimits",
140
+ "SetupAxis",
141
+ "SetupAxisFormat",
142
+ "SetupAxisLimits",
143
+ "SetupAxisLimitsConstraints",
144
+ "SetupAxisLinks",
145
+ "SetupAxisScale",
146
+ "SetupAxisTicks",
147
+ "SetupAxisZoomConstraints",
148
+ "SetupFinish",
149
+ "SetupLegend",
150
+ "SetupMouseText",
151
+ "ShadedFlags",
152
+ "ShowColormapSelector",
153
+ "ShowDemoWindow",
154
+ "ShowInputMapSelector",
155
+ "ShowMetricsWindow",
156
+ "ShowStyleEditor",
157
+ "ShowStyleSelector",
158
+ "ShowUserGuide",
159
+ "StairsFlags",
160
+ "StemsFlags",
161
+ "StyleColorsAuto",
162
+ "StyleColorsClassic",
163
+ "StyleColorsDark",
164
+ "StyleColorsLight",
165
+ "StyleVar",
166
+ "SubplotFlags",
167
+ "TagX",
168
+ "TagY",
169
+ "TextFlags"
170
+ ]
171
+
172
+
173
+ class Axis():
174
+ X1 = 0
175
+ X2 = 1
176
+ X3 = 2
177
+ Y1 = 3
178
+ Y2 = 4
179
+ Y3 = 5
180
+ pass
181
+ class AxisFlags():
182
+ AutoFit = 2048
183
+ AuxDefault = 258
184
+ Foreground = 512
185
+ Invert = 1024
186
+ Lock = 49152
187
+ LockMax = 32768
188
+ LockMin = 16384
189
+ NoDecorations = 15
190
+ NoGridLines = 2
191
+ NoHighlight = 128
192
+ NoInitialFit = 16
193
+ NoLabel = 1
194
+ NoMenus = 32
195
+ NoSideSwitch = 64
196
+ NoTickLabels = 8
197
+ NoTickMarks = 4
198
+ None_ = 0
199
+ Opposite = 256
200
+ PanStretch = 8192
201
+ RangeFit = 4096
202
+ pass
203
+ class BarGroupsFlags():
204
+ Horizontal = 1024
205
+ None_ = 0
206
+ Stacked = 2048
207
+ pass
208
+ class BarsFlags():
209
+ Horizontal = 1024
210
+ None_ = 0
211
+ pass
212
+ class Bin():
213
+ Rice = -3
214
+ Scott = -4
215
+ Sqrt = -1
216
+ Sturges = -2
217
+ pass
218
+ class Col():
219
+ AxisBg = 16
220
+ AxisBgActive = 18
221
+ AxisBgHovered = 17
222
+ AxisGrid = 14
223
+ AxisText = 13
224
+ AxisTick = 15
225
+ Crosshairs = 20
226
+ ErrorBar = 4
227
+ Fill = 1
228
+ FrameBg = 5
229
+ InlayText = 12
230
+ LegendBg = 8
231
+ LegendBorder = 9
232
+ LegendText = 10
233
+ Line = 0
234
+ MarkerFill = 3
235
+ MarkerOutline = 2
236
+ PlotBg = 6
237
+ PlotBorder = 7
238
+ Selection = 19
239
+ TitleText = 11
240
+ pass
241
+ class ColormapEnum():
242
+ BrBG = 12
243
+ Cool = 7
244
+ Dark = 1
245
+ Deep = 0
246
+ Greys = 15
247
+ Hot = 6
248
+ Jet = 9
249
+ Paired = 3
250
+ Pastel = 2
251
+ PiYG = 13
252
+ Pink = 8
253
+ Plasma = 5
254
+ RdBu = 11
255
+ Spectral = 14
256
+ Twilight = 10
257
+ Viridis = 4
258
+ pass
259
+ class ColormapScaleFlags():
260
+ Invert = 4
261
+ NoLabel = 1
262
+ None_ = 0
263
+ Opposite = 2
264
+ pass
265
+ class Cond():
266
+ Always = 1
267
+ None_ = 0
268
+ Once = 2
269
+ pass
270
+ class Context():
271
+ pass
272
+ class DigitalFlags():
273
+ None_ = 0
274
+ pass
275
+ class DragToolFlags():
276
+ Delayed = 8
277
+ NoCursors = 1
278
+ NoFit = 2
279
+ NoInputs = 4
280
+ None_ = 0
281
+ pass
282
+ class DummyFlags():
283
+ None_ = 0
284
+ pass
285
+ class ErrorBarsFlags():
286
+ Horizontal = 1024
287
+ None_ = 0
288
+ pass
289
+ class HeatmapFlags():
290
+ ColMajor = 1024
291
+ None_ = 0
292
+ pass
293
+ class HistogramFlags():
294
+ ColMajor = 16384
295
+ Cumulative = 2048
296
+ Density = 4096
297
+ Horizontal = 1024
298
+ NoOutliers = 8192
299
+ None_ = 0
300
+ pass
301
+ class ImageFlags():
302
+ None_ = 0
303
+ pass
304
+ class InfLinesFlags():
305
+ Horizontal = 1024
306
+ None_ = 0
307
+ pass
308
+ class InputMap():
309
+ def __init__(self) -> None: ...
310
+ @property
311
+ def Fit(self) -> int:
312
+ """
313
+ :type: int
314
+ """
315
+ @Fit.setter
316
+ def Fit(self, arg0: typing.SupportsInt) -> None:
317
+ pass
318
+ @property
319
+ def Menu(self) -> int:
320
+ """
321
+ :type: int
322
+ """
323
+ @Menu.setter
324
+ def Menu(self, arg0: typing.SupportsInt) -> None:
325
+ pass
326
+ @property
327
+ def OverrideMod(self) -> int:
328
+ """
329
+ :type: int
330
+ """
331
+ @OverrideMod.setter
332
+ def OverrideMod(self, arg0: typing.SupportsInt) -> None:
333
+ pass
334
+ @property
335
+ def Pan(self) -> int:
336
+ """
337
+ :type: int
338
+ """
339
+ @Pan.setter
340
+ def Pan(self, arg0: typing.SupportsInt) -> None:
341
+ pass
342
+ @property
343
+ def PanMod(self) -> int:
344
+ """
345
+ :type: int
346
+ """
347
+ @PanMod.setter
348
+ def PanMod(self, arg0: typing.SupportsInt) -> None:
349
+ pass
350
+ @property
351
+ def Select(self) -> int:
352
+ """
353
+ :type: int
354
+ """
355
+ @Select.setter
356
+ def Select(self, arg0: typing.SupportsInt) -> None:
357
+ pass
358
+ @property
359
+ def SelectCancel(self) -> int:
360
+ """
361
+ :type: int
362
+ """
363
+ @SelectCancel.setter
364
+ def SelectCancel(self, arg0: typing.SupportsInt) -> None:
365
+ pass
366
+ @property
367
+ def SelectHorzMod(self) -> int:
368
+ """
369
+ :type: int
370
+ """
371
+ @SelectHorzMod.setter
372
+ def SelectHorzMod(self, arg0: typing.SupportsInt) -> None:
373
+ pass
374
+ @property
375
+ def SelectMod(self) -> int:
376
+ """
377
+ :type: int
378
+ """
379
+ @SelectMod.setter
380
+ def SelectMod(self, arg0: typing.SupportsInt) -> None:
381
+ pass
382
+ @property
383
+ def SelectVertMod(self) -> int:
384
+ """
385
+ :type: int
386
+ """
387
+ @SelectVertMod.setter
388
+ def SelectVertMod(self, arg0: typing.SupportsInt) -> None:
389
+ pass
390
+ @property
391
+ def ZoomMod(self) -> int:
392
+ """
393
+ :type: int
394
+ """
395
+ @ZoomMod.setter
396
+ def ZoomMod(self, arg0: typing.SupportsInt) -> None:
397
+ pass
398
+ @property
399
+ def ZoomRate(self) -> float:
400
+ """
401
+ :type: float
402
+ """
403
+ @ZoomRate.setter
404
+ def ZoomRate(self, arg0: typing.SupportsFloat) -> None:
405
+ pass
406
+ pass
407
+ class ItemFlags():
408
+ NoFit = 2
409
+ NoLegend = 1
410
+ None_ = 0
411
+ pass
412
+ class LegendFlags():
413
+ Horizontal = 32
414
+ NoButtons = 1
415
+ NoHighlightAxis = 4
416
+ NoHighlightItem = 2
417
+ NoMenus = 8
418
+ None_ = 0
419
+ Outside = 16
420
+ Sort = 64
421
+ pass
422
+ class LineFlags():
423
+ Loop = 2048
424
+ NoClip = 8192
425
+ None_ = 0
426
+ Segments = 1024
427
+ Shaded = 16384
428
+ SkipNaN = 4096
429
+ pass
430
+ class Location():
431
+ Center = 0
432
+ East = 8
433
+ North = 1
434
+ NorthEast = 9
435
+ NorthWest = 5
436
+ South = 2
437
+ SouthEast = 10
438
+ SouthWest = 6
439
+ West = 4
440
+ pass
441
+ class Marker():
442
+ Asterisk = 9
443
+ Circle = 0
444
+ Cross = 7
445
+ Diamond = 2
446
+ Down = 4
447
+ Left = 5
448
+ None_ = -1
449
+ Plus = 8
450
+ Right = 6
451
+ Square = 1
452
+ Up = 3
453
+ pass
454
+ class MouseTextFlags():
455
+ NoAuxAxes = 1
456
+ NoFormat = 2
457
+ None_ = 0
458
+ ShowAlways = 4
459
+ pass
460
+ class PieChartFlags():
461
+ Exploding = 4096
462
+ IgnoreHidden = 2048
463
+ None_ = 0
464
+ Normalize = 1024
465
+ pass
466
+ class PlotFlags():
467
+ CanvasOnly = 55
468
+ Crosshairs = 256
469
+ Equal = 128
470
+ NoBoxSelect = 32
471
+ NoFrame = 64
472
+ NoInputs = 8
473
+ NoLegend = 2
474
+ NoMenus = 16
475
+ NoMouseText = 4
476
+ NoTitle = 1
477
+ None_ = 0
478
+ pass
479
+ class PlotStyle():
480
+ def __init__(self) -> None: ...
481
+ @property
482
+ def AnnotationPadding(self) -> imgui.Vec2:
483
+ """
484
+ :type: imgui.Vec2
485
+ """
486
+ @AnnotationPadding.setter
487
+ def AnnotationPadding(self, arg0: imgui.Vec2) -> None:
488
+ pass
489
+ @property
490
+ def Colormap(self) -> int:
491
+ """
492
+ :type: int
493
+ """
494
+ @Colormap.setter
495
+ def Colormap(self, arg0: typing.SupportsInt) -> None:
496
+ pass
497
+ @property
498
+ def Colors(self) -> ListWrapper<ImVec4>:
499
+ """
500
+ :type: ListWrapper<ImVec4>
501
+ """
502
+ @property
503
+ def DigitalBitGap(self) -> float:
504
+ """
505
+ :type: float
506
+ """
507
+ @DigitalBitGap.setter
508
+ def DigitalBitGap(self, arg0: typing.SupportsFloat) -> None:
509
+ pass
510
+ @property
511
+ def DigitalBitHeight(self) -> float:
512
+ """
513
+ :type: float
514
+ """
515
+ @DigitalBitHeight.setter
516
+ def DigitalBitHeight(self, arg0: typing.SupportsFloat) -> None:
517
+ pass
518
+ @property
519
+ def ErrorBarSize(self) -> float:
520
+ """
521
+ :type: float
522
+ """
523
+ @ErrorBarSize.setter
524
+ def ErrorBarSize(self, arg0: typing.SupportsFloat) -> None:
525
+ pass
526
+ @property
527
+ def ErrorBarWeight(self) -> float:
528
+ """
529
+ :type: float
530
+ """
531
+ @ErrorBarWeight.setter
532
+ def ErrorBarWeight(self, arg0: typing.SupportsFloat) -> None:
533
+ pass
534
+ @property
535
+ def FillAlpha(self) -> float:
536
+ """
537
+ :type: float
538
+ """
539
+ @FillAlpha.setter
540
+ def FillAlpha(self, arg0: typing.SupportsFloat) -> None:
541
+ pass
542
+ @property
543
+ def FitPadding(self) -> imgui.Vec2:
544
+ """
545
+ :type: imgui.Vec2
546
+ """
547
+ @FitPadding.setter
548
+ def FitPadding(self, arg0: imgui.Vec2) -> None:
549
+ pass
550
+ @property
551
+ def LabelPadding(self) -> imgui.Vec2:
552
+ """
553
+ :type: imgui.Vec2
554
+ """
555
+ @LabelPadding.setter
556
+ def LabelPadding(self, arg0: imgui.Vec2) -> None:
557
+ pass
558
+ @property
559
+ def LegendInnerPadding(self) -> imgui.Vec2:
560
+ """
561
+ :type: imgui.Vec2
562
+ """
563
+ @LegendInnerPadding.setter
564
+ def LegendInnerPadding(self, arg0: imgui.Vec2) -> None:
565
+ pass
566
+ @property
567
+ def LegendPadding(self) -> imgui.Vec2:
568
+ """
569
+ :type: imgui.Vec2
570
+ """
571
+ @LegendPadding.setter
572
+ def LegendPadding(self, arg0: imgui.Vec2) -> None:
573
+ pass
574
+ @property
575
+ def LegendSpacing(self) -> imgui.Vec2:
576
+ """
577
+ :type: imgui.Vec2
578
+ """
579
+ @LegendSpacing.setter
580
+ def LegendSpacing(self, arg0: imgui.Vec2) -> None:
581
+ pass
582
+ @property
583
+ def LineWeight(self) -> float:
584
+ """
585
+ :type: float
586
+ """
587
+ @LineWeight.setter
588
+ def LineWeight(self, arg0: typing.SupportsFloat) -> None:
589
+ pass
590
+ @property
591
+ def MajorGridSize(self) -> imgui.Vec2:
592
+ """
593
+ :type: imgui.Vec2
594
+ """
595
+ @MajorGridSize.setter
596
+ def MajorGridSize(self, arg0: imgui.Vec2) -> None:
597
+ pass
598
+ @property
599
+ def MajorTickLen(self) -> imgui.Vec2:
600
+ """
601
+ :type: imgui.Vec2
602
+ """
603
+ @MajorTickLen.setter
604
+ def MajorTickLen(self, arg0: imgui.Vec2) -> None:
605
+ pass
606
+ @property
607
+ def MajorTickSize(self) -> imgui.Vec2:
608
+ """
609
+ :type: imgui.Vec2
610
+ """
611
+ @MajorTickSize.setter
612
+ def MajorTickSize(self, arg0: imgui.Vec2) -> None:
613
+ pass
614
+ @property
615
+ def Marker(self) -> int:
616
+ """
617
+ :type: int
618
+ """
619
+ @Marker.setter
620
+ def Marker(self, arg0: typing.SupportsInt) -> None:
621
+ pass
622
+ @property
623
+ def MarkerSize(self) -> float:
624
+ """
625
+ :type: float
626
+ """
627
+ @MarkerSize.setter
628
+ def MarkerSize(self, arg0: typing.SupportsFloat) -> None:
629
+ pass
630
+ @property
631
+ def MarkerWeight(self) -> float:
632
+ """
633
+ :type: float
634
+ """
635
+ @MarkerWeight.setter
636
+ def MarkerWeight(self, arg0: typing.SupportsFloat) -> None:
637
+ pass
638
+ @property
639
+ def MinorAlpha(self) -> float:
640
+ """
641
+ :type: float
642
+ """
643
+ @MinorAlpha.setter
644
+ def MinorAlpha(self, arg0: typing.SupportsFloat) -> None:
645
+ pass
646
+ @property
647
+ def MinorGridSize(self) -> imgui.Vec2:
648
+ """
649
+ :type: imgui.Vec2
650
+ """
651
+ @MinorGridSize.setter
652
+ def MinorGridSize(self, arg0: imgui.Vec2) -> None:
653
+ pass
654
+ @property
655
+ def MinorTickLen(self) -> imgui.Vec2:
656
+ """
657
+ :type: imgui.Vec2
658
+ """
659
+ @MinorTickLen.setter
660
+ def MinorTickLen(self, arg0: imgui.Vec2) -> None:
661
+ pass
662
+ @property
663
+ def MinorTickSize(self) -> imgui.Vec2:
664
+ """
665
+ :type: imgui.Vec2
666
+ """
667
+ @MinorTickSize.setter
668
+ def MinorTickSize(self, arg0: imgui.Vec2) -> None:
669
+ pass
670
+ @property
671
+ def MousePosPadding(self) -> imgui.Vec2:
672
+ """
673
+ :type: imgui.Vec2
674
+ """
675
+ @MousePosPadding.setter
676
+ def MousePosPadding(self, arg0: imgui.Vec2) -> None:
677
+ pass
678
+ @property
679
+ def PlotBorderSize(self) -> float:
680
+ """
681
+ :type: float
682
+ """
683
+ @PlotBorderSize.setter
684
+ def PlotBorderSize(self, arg0: typing.SupportsFloat) -> None:
685
+ pass
686
+ @property
687
+ def PlotDefaultSize(self) -> imgui.Vec2:
688
+ """
689
+ :type: imgui.Vec2
690
+ """
691
+ @PlotDefaultSize.setter
692
+ def PlotDefaultSize(self, arg0: imgui.Vec2) -> None:
693
+ pass
694
+ @property
695
+ def PlotMinSize(self) -> imgui.Vec2:
696
+ """
697
+ :type: imgui.Vec2
698
+ """
699
+ @PlotMinSize.setter
700
+ def PlotMinSize(self, arg0: imgui.Vec2) -> None:
701
+ pass
702
+ @property
703
+ def PlotPadding(self) -> imgui.Vec2:
704
+ """
705
+ :type: imgui.Vec2
706
+ """
707
+ @PlotPadding.setter
708
+ def PlotPadding(self, arg0: imgui.Vec2) -> None:
709
+ pass
710
+ @property
711
+ def Use24HourClock(self) -> bool:
712
+ """
713
+ :type: bool
714
+ """
715
+ @Use24HourClock.setter
716
+ def Use24HourClock(self, arg0: bool) -> None:
717
+ pass
718
+ @property
719
+ def UseISO8601(self) -> bool:
720
+ """
721
+ :type: bool
722
+ """
723
+ @UseISO8601.setter
724
+ def UseISO8601(self, arg0: bool) -> None:
725
+ pass
726
+ @property
727
+ def UseLocalTime(self) -> bool:
728
+ """
729
+ :type: bool
730
+ """
731
+ @UseLocalTime.setter
732
+ def UseLocalTime(self, arg0: bool) -> None:
733
+ pass
734
+ pass
735
+ class Point():
736
+ def __init__(self, x: typing.SupportsFloat = 0, y: typing.SupportsFloat = 0) -> None: ...
737
+ @property
738
+ def x(self) -> float:
739
+ """
740
+ :type: float
741
+ """
742
+ @x.setter
743
+ def x(self, arg0: typing.SupportsFloat) -> None:
744
+ pass
745
+ @property
746
+ def y(self) -> float:
747
+ """
748
+ :type: float
749
+ """
750
+ @y.setter
751
+ def y(self, arg0: typing.SupportsFloat) -> None:
752
+ pass
753
+ pass
754
+ class Range():
755
+ def Clamp(self, value: typing.SupportsFloat) -> float: ...
756
+ def Contains(self, value: typing.SupportsFloat) -> bool: ...
757
+ def Size(self) -> float: ...
758
+ def __init__(self, min: typing.SupportsFloat = 0, max: typing.SupportsFloat = 0) -> None: ...
759
+ pass
760
+ class Rect():
761
+ @typing.overload
762
+ def Clamp(self, p: Point) -> Point: ...
763
+ @typing.overload
764
+ def Clamp(self, x: typing.SupportsFloat, y: typing.SupportsFloat) -> Point: ...
765
+ @typing.overload
766
+ def Contains(self, p: Point) -> bool: ...
767
+ @typing.overload
768
+ def Contains(self, x: typing.SupportsFloat, y: typing.SupportsFloat) -> bool: ...
769
+ def Max(self) -> Point: ...
770
+ def Min(self) -> Point: ...
771
+ def Size(self) -> Point: ...
772
+ def __init__(self, x_min: typing.SupportsFloat = 0, x_max: typing.SupportsFloat = 0, y_min: typing.SupportsFloat = 0, y_max: typing.SupportsFloat = 0) -> None: ...
773
+ pass
774
+ class Scale():
775
+ Linear = 0
776
+ Log10 = 2
777
+ SymLog = 3
778
+ Time = 1
779
+ pass
780
+ class ScatterFlags():
781
+ NoClip = 1024
782
+ None_ = 0
783
+ pass
784
+ class ShadedFlags():
785
+ None_ = 0
786
+ pass
787
+ class StairsFlags():
788
+ None_ = 0
789
+ PreStep = 1024
790
+ Shaded = 2048
791
+ pass
792
+ class StemsFlags():
793
+ Horizontal = 1024
794
+ None_ = 0
795
+ pass
796
+ class StyleVar():
797
+ AnnotationPadding = 23
798
+ DigitalBitGap = 8
799
+ DigitalBitHeight = 7
800
+ ErrorBarSize = 5
801
+ ErrorBarWeight = 6
802
+ FillAlpha = 4
803
+ FitPadding = 24
804
+ LabelPadding = 18
805
+ LegendInnerPadding = 20
806
+ LegendPadding = 19
807
+ LegendSpacing = 21
808
+ LineWeight = 0
809
+ MajorGridSize = 15
810
+ MajorTickLen = 11
811
+ MajorTickSize = 13
812
+ Marker = 1
813
+ MarkerSize = 2
814
+ MarkerWeight = 3
815
+ MinorAlpha = 10
816
+ MinorGridSize = 16
817
+ MinorTickLen = 12
818
+ MinorTickSize = 14
819
+ MousePosPadding = 22
820
+ PlotBorderSize = 9
821
+ PlotDefaultSize = 25
822
+ PlotMinSize = 26
823
+ PlotPadding = 17
824
+ pass
825
+ class SubplotFlags():
826
+ ColMajor = 1024
827
+ LinkAllX = 256
828
+ LinkAllY = 512
829
+ LinkCols = 128
830
+ LinkRows = 64
831
+ NoAlign = 16
832
+ NoLegend = 2
833
+ NoMenus = 4
834
+ NoResize = 8
835
+ NoTitle = 1
836
+ None_ = 0
837
+ ShareItems = 32
838
+ pass
839
+ class TextFlags():
840
+ None_ = 0
841
+ Vertical = 1024
842
+ pass
843
+ @typing.overload
844
+ def AddColorMap(name: str, cols: typing.Annotated[numpy.typing.ArrayLike, imgui.Vec4], qual: bool = True) -> int:
845
+ pass
846
+ @typing.overload
847
+ def AddColorMap(name: str, cols: typing.Annotated[numpy.typing.ArrayLike, numpy.uint32], qual: bool = True) -> int:
848
+ pass
849
+ @typing.overload
850
+ def Annotation(x: typing.SupportsFloat, y: typing.SupportsFloat, col: imgui.Vec4, pix_offset: imgui.Vec2, clamp: bool, fmt: str) -> None:
851
+ pass
852
+ @typing.overload
853
+ def Annotation(x: typing.SupportsFloat, y: typing.SupportsFloat, col: imgui.Vec4, pix_offset: imgui.Vec2, clamp: bool, round: bool = False) -> None:
854
+ pass
855
+ def BeginAlignedPlots(group_id: str, vertical: bool = True) -> bool:
856
+ pass
857
+ def BeginDragDropSourceAxis(axis: typing.SupportsInt, flags: typing.SupportsInt = 0) -> bool:
858
+ pass
859
+ def BeginDragDropSourceItem(label_id: str, flags: typing.SupportsInt = 0) -> bool:
860
+ pass
861
+ def BeginDragDropSourcePlot(flags: typing.SupportsInt = 0) -> bool:
862
+ pass
863
+ def BeginDragDropTargetAxis(axis: typing.SupportsInt) -> bool:
864
+ pass
865
+ def BeginDragDropTargetLegend() -> bool:
866
+ pass
867
+ def BeginDragDropTargetPlot() -> bool:
868
+ pass
869
+ def BeginLegendPopup(label_id: str, mouse_button: typing.SupportsInt = 1) -> bool:
870
+ pass
871
+ def BeginPlot(title_id: str, size: imgui.Vec2 = Vec2(-1, 0), flags: typing.SupportsInt = 0) -> bool:
872
+ pass
873
+ def BeginSubplots(title_id: str, rows: typing.SupportsInt, cols: typing.SupportsInt, size: imgui.Vec2, flags: typing.SupportsInt = 0, row_ratios: imgui.FloatList = None, col_ratios: imgui.FloatList = None) -> bool:
874
+ pass
875
+ def BustColorCache(plot_title_id: typing.Optional[str] = None) -> None:
876
+ pass
877
+ def CancelPlotSelection() -> None:
878
+ pass
879
+ def ColormapButton(label: str, size: imgui.Vec2 = Vec2(0, 0), cmap: typing.SupportsInt = -1) -> bool:
880
+ pass
881
+ def ColormapIcon(cmap: typing.SupportsInt) -> None:
882
+ pass
883
+ def ColormapScale(label: str, scale_min: typing.SupportsFloat, scale_max: typing.SupportsFloat, size: imgui.Vec2 = Vec2(0, 0), format: str = '%g', flags: typing.SupportsInt = 0, cmap: typing.SupportsInt = -1) -> None:
884
+ pass
885
+ def ColormapSlider(label: str, t: imgui.FloatRef, out: imgui.Vec4 = None, format: str = '', cmap: typing.SupportsInt = -1) -> bool:
886
+ pass
887
+ def CreateContext() -> Context:
888
+ pass
889
+ def DestroyContext(ctx: typing.Optional[Context] = None) -> None:
890
+ pass
891
+ def DragLineX(id: typing.SupportsInt, x: typing.SupportsFloat, col: imgui.Vec4, thickness: typing.SupportsFloat = 1, flags: typing.SupportsInt = 0) -> tuple:
892
+ pass
893
+ def DragLineY(id: typing.SupportsInt, y: typing.SupportsFloat, col: imgui.Vec4, thickness: typing.SupportsFloat = 1, flags: typing.SupportsInt = 0) -> tuple:
894
+ pass
895
+ def DragPoint(id: typing.SupportsInt, x: typing.SupportsFloat, y: typing.SupportsFloat, col: imgui.Vec4, size: typing.SupportsFloat = 4, flags: typing.SupportsInt = 0) -> tuple:
896
+ pass
897
+ def DragRect(id: typing.SupportsInt, x1: typing.SupportsFloat, y1: typing.SupportsFloat, x2: typing.SupportsFloat, y2: typing.SupportsFloat, col: imgui.Vec4, flags: typing.SupportsInt = 0) -> tuple:
898
+ pass
899
+ def EndAlignedPlots() -> None:
900
+ pass
901
+ def EndDragDropSource() -> None:
902
+ pass
903
+ def EndDragDropTarget() -> None:
904
+ pass
905
+ def EndLegendPopup() -> None:
906
+ pass
907
+ def EndPlot() -> None:
908
+ pass
909
+ def EndSubplots() -> None:
910
+ pass
911
+ def GetColormapColor(idx: typing.SupportsInt, cmap: typing.SupportsInt = -1) -> imgui.Vec4:
912
+ pass
913
+ def GetColormapCount() -> int:
914
+ pass
915
+ def GetColormapIndex(name: str) -> int:
916
+ pass
917
+ def GetColormapName(cmap: typing.SupportsInt) -> str:
918
+ pass
919
+ def GetColormapSize(cmap: typing.SupportsInt = -1) -> int:
920
+ pass
921
+ def GetCurrentContext() -> Context:
922
+ pass
923
+ def GetInputMap() -> InputMap:
924
+ pass
925
+ def GetLastItemColor() -> imgui.Vec4:
926
+ pass
927
+ def GetMarkerName(idx: typing.SupportsInt) -> str:
928
+ pass
929
+ def GetPlotDrawList() -> imgui.ImDrawList:
930
+ pass
931
+ def GetPlotLimits(x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> Rect:
932
+ pass
933
+ def GetPlotMousePos(x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> Point:
934
+ pass
935
+ def GetPlotPos() -> imgui.Vec2:
936
+ pass
937
+ def GetPlotSelection(x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> Rect:
938
+ pass
939
+ def GetPlotSize() -> imgui.Vec2:
940
+ pass
941
+ def GetStyle() -> PlotStyle:
942
+ pass
943
+ def GetStyleColorName(idx: typing.SupportsInt) -> str:
944
+ pass
945
+ def HideNextItem(hidden: bool = True, cond: typing.SupportsInt = 2) -> None:
946
+ pass
947
+ def IsAxisHovered(axis: typing.SupportsInt) -> bool:
948
+ pass
949
+ def IsLegendEntryHovered(label_id: str) -> bool:
950
+ pass
951
+ def IsPlotHovered() -> bool:
952
+ pass
953
+ def IsPlotSelected() -> bool:
954
+ pass
955
+ def IsSubplotsHovered() -> bool:
956
+ pass
957
+ @typing.overload
958
+ def ItemIcon(col: imgui.Vec4) -> None:
959
+ pass
960
+ @typing.overload
961
+ def ItemIcon(col: typing.SupportsInt) -> None:
962
+ pass
963
+ def MapInputDefault(dst: typing.Optional[InputMap] = None) -> None:
964
+ pass
965
+ def MapInputReverse(dst: typing.Optional[InputMap] = None) -> None:
966
+ pass
967
+ def NextColormapColor() -> imgui.Vec4:
968
+ pass
969
+ @typing.overload
970
+ def PixelsToPlot(pix: imgui.Vec2, x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> Point:
971
+ pass
972
+ @typing.overload
973
+ def PixelsToPlot(x: typing.SupportsFloat, y: typing.SupportsFloat, x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> Point:
974
+ pass
975
+ @typing.overload
976
+ def PlotBarGroups(labels: imgui.StrList, values: imgui.DoubleList, item_count: typing.SupportsInt, group_count: typing.SupportsInt, group_size: typing.SupportsFloat = 0.67, shift: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0) -> None:
977
+ pass
978
+ @typing.overload
979
+ def PlotBarGroups(labels: imgui.StrList, values: imgui.IntList, item_count: typing.SupportsInt, group_count: typing.SupportsInt, group_size: typing.SupportsFloat = 0.67, shift: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0) -> None:
980
+ pass
981
+ @typing.overload
982
+ def PlotBarGroups(labels: typing.Annotated[numpy.typing.ArrayLike, str], values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], item_count: typing.SupportsInt, group_count: typing.SupportsInt, group_size: typing.SupportsFloat = 0.67, shift: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0) -> None:
983
+ pass
984
+ @typing.overload
985
+ def PlotBars(label_id: str, values: imgui.DoubleList, bar_size: typing.SupportsFloat = 0.67, shift: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
986
+ pass
987
+ @typing.overload
988
+ def PlotBars(label_id: str, values: imgui.IntList, bar_size: typing.SupportsFloat = 0.67, shift: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
989
+ pass
990
+ @typing.overload
991
+ def PlotBars(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], bar_size: typing.SupportsFloat = 0.67, shift: typing.SupportsFloat = 0.0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
992
+ pass
993
+ @typing.overload
994
+ def PlotBars(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, bar_size: typing.SupportsFloat = 0.67, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
995
+ pass
996
+ @typing.overload
997
+ def PlotBars(label_id: str, xs: imgui.IntList, ys: imgui.IntList, bar_size: typing.SupportsFloat = 0.67, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
998
+ pass
999
+ @typing.overload
1000
+ def PlotBars(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], bar_size: typing.SupportsFloat = 0.67, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1001
+ pass
1002
+ @typing.overload
1003
+ def PlotDigital(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1004
+ pass
1005
+ @typing.overload
1006
+ def PlotDigital(label_id: str, xs: imgui.IntList, ys: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1007
+ pass
1008
+ @typing.overload
1009
+ def PlotDigital(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1010
+ pass
1011
+ def PlotDummy(label_id: str, flags: typing.SupportsInt = 0) -> None:
1012
+ pass
1013
+ @typing.overload
1014
+ def PlotErrorBars(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, err: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1015
+ pass
1016
+ @typing.overload
1017
+ def PlotErrorBars(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, neg: imgui.DoubleList, pos: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1018
+ pass
1019
+ @typing.overload
1020
+ def PlotErrorBars(label_id: str, xs: imgui.IntList, ys: imgui.IntList, err: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1021
+ pass
1022
+ @typing.overload
1023
+ def PlotErrorBars(label_id: str, xs: imgui.IntList, ys: imgui.IntList, neg: imgui.IntList, pos: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1024
+ pass
1025
+ @typing.overload
1026
+ def PlotErrorBars(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], err: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1027
+ pass
1028
+ @typing.overload
1029
+ def PlotErrorBars(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], neg: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], pos: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1030
+ pass
1031
+ @typing.overload
1032
+ def PlotHeatmap(label_id: str, values: imgui.DoubleList, rows: typing.SupportsInt, cols: typing.SupportsInt, scale_min: typing.SupportsFloat = 0, scale_max: typing.SupportsFloat = 0, label_fmt: str = '%.1f', bounds_min: Point = Point(0, 0), bounds_max: Point = Point(1, 1), flags: typing.SupportsInt = 0) -> None:
1033
+ pass
1034
+ @typing.overload
1035
+ def PlotHeatmap(label_id: str, values: imgui.IntList, rows: typing.SupportsInt, cols: typing.SupportsInt, scale_min: typing.SupportsFloat = 0, scale_max: typing.SupportsFloat = 0, label_fmt: str = '%.1f', bounds_min: Point = Point(0, 0), bounds_max: Point = Point(1, 1), flags: typing.SupportsInt = 0) -> None:
1036
+ pass
1037
+ @typing.overload
1038
+ def PlotHeatmap(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], rows: typing.SupportsInt, cols: typing.SupportsInt, scale_min: typing.SupportsFloat = 0, scale_max: typing.SupportsFloat = 0, label_fmt: str = '%.1f', bounds_min: Point = Point(0, 0), bounds_max: Point = Point(1, 1), flags: typing.SupportsInt = 0) -> None:
1039
+ pass
1040
+ @typing.overload
1041
+ def PlotHistogram(label_id: str, values: imgui.DoubleList, bins: typing.SupportsInt = -2, bar_scale: typing.SupportsFloat = 1.0, range: Range = Range(0, 0), flags: typing.SupportsInt = 0) -> None:
1042
+ pass
1043
+ @typing.overload
1044
+ def PlotHistogram(label_id: str, values: imgui.IntList, bins: typing.SupportsInt = -2, bar_scale: typing.SupportsFloat = 1.0, range: Range = Range(0, 0), flags: typing.SupportsInt = 0) -> None:
1045
+ pass
1046
+ @typing.overload
1047
+ def PlotHistogram(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], bins: typing.SupportsInt = -2, bar_scale: typing.SupportsFloat = 1.0, range: Range = Range(0, 0), flags: typing.SupportsInt = 0) -> None:
1048
+ pass
1049
+ @typing.overload
1050
+ def PlotHistogram2D(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, x_bins: typing.SupportsInt = -2, y_bins: typing.SupportsInt = -2, range: Rect = Rect(0, 0), flags: typing.SupportsInt = 0) -> None:
1051
+ pass
1052
+ @typing.overload
1053
+ def PlotHistogram2D(label_id: str, xs: imgui.IntList, ys: imgui.IntList, x_bins: typing.SupportsInt = -2, y_bins: typing.SupportsInt = -2, range: Rect = Rect(0, 0), flags: typing.SupportsInt = 0) -> None:
1054
+ pass
1055
+ @typing.overload
1056
+ def PlotHistogram2D(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], x_bins: typing.SupportsInt = -2, y_bins: typing.SupportsInt = -2, range: Rect = Rect(0, 0), flags: typing.SupportsInt = 0) -> None:
1057
+ pass
1058
+ def PlotImage(label_id: str, texture: imgui.Texture, bounds_min: Point, bounds_max: Point, uv0: imgui.Vec2 = Vec2(0, 0), uv1: imgui.Vec2 = Vec2(0, 0), tint_col: imgui.Vec4 = Vec4(1, 1, 1, 1), flags: typing.SupportsInt = 0) -> None:
1059
+ pass
1060
+ @typing.overload
1061
+ def PlotInfLines(label_id: str, values: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1062
+ pass
1063
+ @typing.overload
1064
+ def PlotInfLines(label_id: str, values: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1065
+ pass
1066
+ @typing.overload
1067
+ def PlotInfLines(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1068
+ pass
1069
+ @typing.overload
1070
+ def PlotLine(label_id: str, values: imgui.DoubleList, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1071
+ pass
1072
+ @typing.overload
1073
+ def PlotLine(label_id: str, values: imgui.IntList, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1074
+ pass
1075
+ @typing.overload
1076
+ def PlotLine(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1077
+ pass
1078
+ @typing.overload
1079
+ def PlotLine(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1080
+ pass
1081
+ @typing.overload
1082
+ def PlotLine(label_id: str, xs: imgui.IntList, ys: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1083
+ pass
1084
+ @typing.overload
1085
+ def PlotLine(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1086
+ pass
1087
+ @typing.overload
1088
+ def PlotPieChart(label_ids: imgui.StrList, values: imgui.DoubleList, x: typing.SupportsFloat, y: typing.SupportsFloat, radius: typing.SupportsFloat, label_fmt: str = '%.1f', angle0: typing.SupportsFloat = 90, flags: typing.SupportsInt = 0) -> None:
1089
+ pass
1090
+ @typing.overload
1091
+ def PlotPieChart(label_ids: imgui.StrList, values: imgui.IntList, x: typing.SupportsFloat, y: typing.SupportsFloat, radius: typing.SupportsFloat, label_fmt: str = '%.1f', angle0: typing.SupportsFloat = 90, flags: typing.SupportsInt = 0) -> None:
1092
+ pass
1093
+ @typing.overload
1094
+ def PlotPieChart(label_ids: typing.Annotated[numpy.typing.ArrayLike, str], values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], x: typing.SupportsFloat, y: typing.SupportsFloat, radius: typing.SupportsFloat, label_fmt: str = '%.1f', angle0: typing.SupportsFloat = 90, flags: typing.SupportsInt = 0) -> None:
1095
+ pass
1096
+ @typing.overload
1097
+ def PlotScatter(label_id: str, values: imgui.DoubleList, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1098
+ pass
1099
+ @typing.overload
1100
+ def PlotScatter(label_id: str, values: imgui.IntList, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1101
+ pass
1102
+ @typing.overload
1103
+ def PlotScatter(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1104
+ pass
1105
+ @typing.overload
1106
+ def PlotScatter(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1107
+ pass
1108
+ @typing.overload
1109
+ def PlotScatter(label_id: str, xs: imgui.IntList, ys: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1110
+ pass
1111
+ @typing.overload
1112
+ def PlotScatter(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1113
+ pass
1114
+ @typing.overload
1115
+ def PlotShaded(label_id: str, values: imgui.DoubleList, yref: typing.SupportsFloat = 0, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1116
+ pass
1117
+ @typing.overload
1118
+ def PlotShaded(label_id: str, values: imgui.IntList, yref: typing.SupportsFloat = 0, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1119
+ pass
1120
+ @typing.overload
1121
+ def PlotShaded(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], yref: typing.SupportsFloat = 0, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1122
+ pass
1123
+ @typing.overload
1124
+ def PlotShaded(label_id: str, xs: imgui.DoubleList, ys1: imgui.DoubleList, ys2: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1125
+ pass
1126
+ @typing.overload
1127
+ def PlotShaded(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, yref: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1128
+ pass
1129
+ @typing.overload
1130
+ def PlotShaded(label_id: str, xs: imgui.IntList, ys1: imgui.IntList, ys2: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1131
+ pass
1132
+ @typing.overload
1133
+ def PlotShaded(label_id: str, xs: imgui.IntList, ys: imgui.IntList, yref: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1134
+ pass
1135
+ @typing.overload
1136
+ def PlotShaded(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys1: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys2: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1137
+ pass
1138
+ @typing.overload
1139
+ def PlotShaded(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], yref: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1140
+ pass
1141
+ @typing.overload
1142
+ def PlotStairs(label_id: str, values: imgui.DoubleList, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1143
+ pass
1144
+ @typing.overload
1145
+ def PlotStairs(label_id: str, values: imgui.IntList, xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1146
+ pass
1147
+ @typing.overload
1148
+ def PlotStairs(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], xscale: typing.SupportsFloat = 1, xstart: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1149
+ pass
1150
+ @typing.overload
1151
+ def PlotStairs(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1152
+ pass
1153
+ @typing.overload
1154
+ def PlotStairs(label_id: str, xs: imgui.IntList, ys: imgui.IntList, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1155
+ pass
1156
+ @typing.overload
1157
+ def PlotStairs(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1158
+ pass
1159
+ @typing.overload
1160
+ def PlotStems(label_id: str, values: imgui.DoubleList, ref: typing.SupportsInt = 0, scale: typing.SupportsFloat = 1, start: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1161
+ pass
1162
+ @typing.overload
1163
+ def PlotStems(label_id: str, values: imgui.IntList, ref: typing.SupportsInt = 0, scale: typing.SupportsFloat = 1, start: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1164
+ pass
1165
+ @typing.overload
1166
+ def PlotStems(label_id: str, values: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ref: typing.SupportsInt = 0, scale: typing.SupportsFloat = 1, start: typing.SupportsFloat = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1167
+ pass
1168
+ @typing.overload
1169
+ def PlotStems(label_id: str, xs: imgui.DoubleList, ys: imgui.DoubleList, ref: typing.SupportsInt = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1170
+ pass
1171
+ @typing.overload
1172
+ def PlotStems(label_id: str, xs: imgui.IntList, ys: imgui.IntList, ref: typing.SupportsInt = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1173
+ pass
1174
+ @typing.overload
1175
+ def PlotStems(label_id: str, xs: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ys: typing.Annotated[numpy.typing.ArrayLike, numpy.float64], ref: typing.SupportsInt = 0, flags: typing.SupportsInt = 0, offset: typing.SupportsInt = 0) -> None:
1176
+ pass
1177
+ def PlotText(text: str, x: typing.SupportsFloat, y: typing.SupportsFloat, pix_offset: imgui.Vec2 = Vec2(0, 0), flags: typing.SupportsInt = 0) -> None:
1178
+ pass
1179
+ @typing.overload
1180
+ def PlotToPixels(plt: Point, x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> imgui.Vec2:
1181
+ pass
1182
+ @typing.overload
1183
+ def PlotToPixels(x: typing.SupportsFloat, y: typing.SupportsFloat, x_axis: typing.SupportsInt = -1, y_axis: typing.SupportsInt = -1) -> imgui.Vec2:
1184
+ pass
1185
+ def PopColormap(count: typing.SupportsInt = 1) -> None:
1186
+ pass
1187
+ def PopPlotClipRect() -> None:
1188
+ pass
1189
+ def PopStyleColor(count: typing.SupportsInt = 1) -> None:
1190
+ pass
1191
+ def PopStyleVar(count: typing.SupportsInt = 1) -> None:
1192
+ pass
1193
+ @typing.overload
1194
+ def PushColormap(cmap: typing.SupportsInt) -> None:
1195
+ pass
1196
+ @typing.overload
1197
+ def PushColormap(name: str) -> None:
1198
+ pass
1199
+ def PushPlotClipRect(expand: typing.SupportsFloat = 0) -> None:
1200
+ pass
1201
+ @typing.overload
1202
+ def PushStyleColor(idx: typing.SupportsInt, col: imgui.Vec4) -> None:
1203
+ pass
1204
+ @typing.overload
1205
+ def PushStyleColor(idx: typing.SupportsInt, col: typing.SupportsInt) -> None:
1206
+ pass
1207
+ @typing.overload
1208
+ def PushStyleVar(idx: typing.SupportsInt, val: float) -> None:
1209
+ pass
1210
+ @typing.overload
1211
+ def PushStyleVar(idx: typing.SupportsInt, val: imgui.Vec2) -> None:
1212
+ pass
1213
+ @typing.overload
1214
+ def PushStyleVar(idx: typing.SupportsInt, val: int) -> None:
1215
+ pass
1216
+ def SampleColormap(t: typing.SupportsFloat, cmap: typing.SupportsInt = -1) -> imgui.Vec4:
1217
+ pass
1218
+ def SetAxes(x_axis: typing.SupportsInt, y_axis: typing.SupportsInt) -> None:
1219
+ pass
1220
+ def SetAxis(axis: typing.SupportsInt) -> None:
1221
+ pass
1222
+ def SetCurrentContext(ctx: Context) -> None:
1223
+ pass
1224
+ def SetNextAxesLimits(x_min: typing.SupportsFloat, x_max: typing.SupportsFloat, y_min: typing.SupportsFloat, y_max: typing.SupportsFloat, cond: typing.SupportsInt = 2) -> None:
1225
+ pass
1226
+ def SetNextAxesToFit() -> None:
1227
+ pass
1228
+ def SetNextAxisLimits(axis: typing.SupportsInt, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, cond: typing.SupportsInt = 2) -> None:
1229
+ pass
1230
+ def SetNextAxisLinks(arg0: typing.SupportsInt, arg1: imgui.DoubleRef, arg2: imgui.DoubleRef) -> None:
1231
+ pass
1232
+ def SetNextAxisToFit(axis: typing.SupportsInt) -> None:
1233
+ pass
1234
+ def SetNextErrorBarStyle(col: imgui.Vec4 = IMPLOT_AUTO_COL, size: typing.SupportsFloat = -1, weight: typing.SupportsFloat = -1) -> None:
1235
+ pass
1236
+ def SetNextFillStyle(col: imgui.Vec4 = IMPLOT_AUTO_COL, alpha_mod: typing.SupportsFloat = -1) -> None:
1237
+ pass
1238
+ def SetNextLineStyle(col: imgui.Vec4 = IMPLOT_AUTO_COL, weight: typing.SupportsFloat = -1) -> None:
1239
+ pass
1240
+ def SetNextMarkerStyle(marker: typing.SupportsInt = -1, size: typing.SupportsFloat = -1, fill: imgui.Vec4 = IMPLOT_AUTO_COL, weight: typing.SupportsFloat = -1, outline: imgui.Vec4 = IMPLOT_AUTO_COL) -> None:
1241
+ pass
1242
+ def SetupAxes(x_label: str, y_label: str, x_flags: typing.SupportsInt = 0, y_flags: typing.SupportsInt = 0) -> None:
1243
+ pass
1244
+ def SetupAxesLimits(x_min: typing.SupportsFloat, x_max: typing.SupportsFloat, y_min: typing.SupportsFloat, y_max: typing.SupportsFloat, cond: typing.SupportsInt = 2) -> None:
1245
+ pass
1246
+ def SetupAxis(axis: typing.SupportsInt, label: typing.Optional[str] = None, flags: typing.SupportsInt = 0) -> None:
1247
+ pass
1248
+ def SetupAxisFormat(axis: typing.SupportsInt, format: str) -> None:
1249
+ pass
1250
+ def SetupAxisLimits(axis: typing.SupportsInt, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, cond: typing.SupportsInt = 2) -> None:
1251
+ pass
1252
+ def SetupAxisLimitsConstraints(axis: typing.SupportsInt, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat) -> None:
1253
+ pass
1254
+ def SetupAxisLinks(axis: typing.SupportsInt, link_min: imgui.DoubleRef, link_max: imgui.DoubleRef) -> None:
1255
+ pass
1256
+ def SetupAxisScale(axis: typing.SupportsInt, scale: typing.SupportsInt) -> None:
1257
+ pass
1258
+ @typing.overload
1259
+ def SetupAxisTicks(axis: typing.SupportsInt, v_min: typing.SupportsFloat, v_max: typing.SupportsFloat, n_ticks: typing.SupportsInt, labels: imgui.StrList = None, keep_default: bool = False) -> None:
1260
+ pass
1261
+ @typing.overload
1262
+ def SetupAxisTicks(axis: typing.SupportsInt, values: imgui.DoubleList, labels: imgui.StrList = None, keep_default: bool = False) -> None:
1263
+ pass
1264
+ def SetupAxisZoomConstraints(axis: typing.SupportsInt, z_min: typing.SupportsFloat, z_max: typing.SupportsFloat) -> None:
1265
+ pass
1266
+ def SetupFinish() -> None:
1267
+ pass
1268
+ def SetupLegend(location: typing.SupportsInt, flags: typing.SupportsInt = 0) -> None:
1269
+ pass
1270
+ def SetupMouseText(location: typing.SupportsInt, flags: typing.SupportsInt = 0) -> None:
1271
+ pass
1272
+ def ShowColormapSelector(label: str) -> bool:
1273
+ pass
1274
+ def ShowDemoWindow(p_open: imgui.BoolRef = None) -> None:
1275
+ pass
1276
+ def ShowInputMapSelector(label: str) -> bool:
1277
+ pass
1278
+ def ShowMetricsWindow(p_open: imgui.BoolRef = None) -> None:
1279
+ pass
1280
+ def ShowStyleEditor(ref: typing.Optional[PlotStyle] = None) -> None:
1281
+ pass
1282
+ def ShowStyleSelector(label: str) -> bool:
1283
+ pass
1284
+ def ShowUserGuide() -> None:
1285
+ pass
1286
+ def StyleColorsAuto(dst: typing.Optional[PlotStyle] = None) -> None:
1287
+ pass
1288
+ def StyleColorsClassic(dst: typing.Optional[PlotStyle] = None) -> None:
1289
+ pass
1290
+ def StyleColorsDark(dst: typing.Optional[PlotStyle] = None) -> None:
1291
+ pass
1292
+ def StyleColorsLight(dst: typing.Optional[PlotStyle] = None) -> None:
1293
+ pass
1294
+ @typing.overload
1295
+ def TagX(x: typing.SupportsFloat, col: imgui.Vec4, fmt: str) -> None:
1296
+ pass
1297
+ @typing.overload
1298
+ def TagX(x: typing.SupportsFloat, col: imgui.Vec4, round: bool = False) -> None:
1299
+ pass
1300
+ @typing.overload
1301
+ def TagY(y: typing.SupportsFloat, col: imgui.Vec4, fmt: str) -> None:
1302
+ pass
1303
+ @typing.overload
1304
+ def TagY(y: typing.SupportsFloat, col: imgui.Vec4, round: bool = False) -> None:
1305
+ pass