@@ -183,6 +183,7 @@ def __init__(
183
183
nudge_x : int = 0 ,
184
184
nudge_y : int = 0 ,
185
185
verbose : bool = False ,
186
+ fill_area : bool = False ,
186
187
** kwargs ,
187
188
) -> None :
188
189
@@ -318,6 +319,8 @@ def __init__(
318
319
self ._circle_palette = None
319
320
self .plot_line_point = None
320
321
322
+ self ._fill_area = fill_area
323
+
321
324
@staticmethod
322
325
def _get_font_height (font , scale : int ) -> Tuple [int , int ]:
323
326
if hasattr (font , "get_bounding_box" ):
@@ -501,8 +504,8 @@ def _add_point(self, x: int, y: int) -> None:
501
504
:param int x: ``x`` coordinate in the local plane
502
505
:param int y: ``y`` coordinate in the local plane
503
506
:return: None
504
- rtype: None
505
507
"""
508
+
506
509
local_x , local_y = self ._calc_local_xy (x , y )
507
510
if self ._verbose :
508
511
print ("" )
@@ -562,6 +565,7 @@ def _add_point(self, x: int, y: int) -> None:
562
565
self .height ,
563
566
)
564
567
)
568
+
565
569
else :
566
570
# for better error messages we check in detail what failed...
567
571
if not self ._check_x_in_range (x ):
@@ -591,7 +595,6 @@ def update_pointer(self, x: int, y: int) -> None:
591
595
:param int x: ``x`` coordinate in the local plane
592
596
:param int y: ``y`` coordinate in the local plane
593
597
:return: None
594
- rtype: None
595
598
"""
596
599
self ._add_point (x , y )
597
600
if not self ._pointer :
@@ -603,6 +606,15 @@ def update_pointer(self, x: int, y: int) -> None:
603
606
self ._pointer .x = self .plot_line_point [- 1 ][0 ]
604
607
self ._pointer .y = self .plot_line_point [- 1 ][1 ]
605
608
609
+ @property
610
+ def fill_area (self ) -> bool :
611
+ """Whether the area under the graph (integral) should be shaded"""
612
+ return self ._fill_area
613
+
614
+ @fill_area .setter
615
+ def fill_area (self , setting : bool ) -> None :
616
+ self ._fill_area = setting
617
+
606
618
def add_plot_line (self , x : int , y : int ) -> None :
607
619
"""add_plot_line function.
608
620
@@ -612,8 +624,6 @@ def add_plot_line(self, x: int, y: int) -> None:
612
624
:param int x: ``x`` coordinate in the local plane
613
625
:param int y: ``y`` coordinate in the local plane
614
626
:return: None
615
-
616
- rtype: None
617
627
"""
618
628
self ._add_point (x , y )
619
629
if len (self .plot_line_point ) > 1 :
@@ -625,17 +635,59 @@ def add_plot_line(self, x: int, y: int) -> None:
625
635
self .plot_line_point [- 1 ][1 ],
626
636
1 ,
627
637
)
638
+ # Plot area under graph
639
+ if self ._fill_area :
640
+
641
+ delta_x = self .plot_line_point [- 2 ][0 ] - self .plot_line_point [- 1 ][0 ]
642
+ delta_y = self .plot_line_point [- 2 ][1 ] - self .plot_line_point [- 1 ][1 ]
643
+ delta_y_product = (
644
+ self .plot_line_point [- 1 ][1 ] * self .plot_line_point [- 2 ][1 ]
645
+ )
646
+
647
+ if delta_x == 0 :
648
+ return
649
+
650
+ slope = delta_y / delta_x
651
+
652
+ if delta_y_product < 0 :
653
+
654
+ intercept = self .plot_line_point [- 1 ][1 ]
655
+ zero_point_x = (- 1 * intercept ) / slope
656
+
657
+ self ._draw_area_under (self .plot_line_point [- 2 ], (zero_point_x , 0 ))
658
+ self ._draw_area_under ((zero_point_x , 0 ), self .plot_line_point [- 1 ])
659
+
660
+ else :
661
+
662
+ self ._draw_area_under (
663
+ self .plot_line_point [- 2 ], self .plot_line_point [- 1 ]
664
+ )
665
+
666
+ def _draw_area_under (
667
+ self , xy0 : Tuple [float , float ], xy1 : Tuple [float , float ]
668
+ ) -> None :
669
+
670
+ _ , plot_y_zero = self ._calc_local_xy (0 , 0 )
671
+
672
+ delta_x = self .plot_line_point [- 2 ][0 ] - self .plot_line_point [- 1 ][0 ]
673
+ delta_y = self .plot_line_point [- 2 ][1 ] - self .plot_line_point [- 1 ][1 ]
674
+ slope = delta_y / delta_x
675
+
676
+ for pixel_x in range (xy0 [0 ], xy1 [0 ] + 1 ):
677
+ if pixel_x != xy1 [0 ]:
678
+ pixel_y = round (slope * (pixel_x - xy1 [0 ]) + xy1 [1 ])
679
+ bitmaptools .draw_line (
680
+ self ._plot_bitmap , pixel_x , pixel_y , pixel_x , plot_y_zero , 1
681
+ )
628
682
629
- def clear_plot_lines (self , palette_index = 5 ) :
683
+ def clear_plot_lines (self , palette_index : int = 5 ) -> None :
630
684
"""clear_plot_lines function.
631
685
632
686
clear all added lines
633
687
(clear line-plot graph)
634
688
635
689
:param int palette_index: color palett index. Defaults to 5
636
690
:return: None
637
-
638
- rtype: None
639
691
"""
640
692
self .plot_line_point = None
641
693
self ._plot_bitmap .fill (palette_index )
0 commit comments