@@ -535,14 +535,14 @@ def plot_RGB_colourspaces_in_chromaticity_diagram(
535535
536536 settings = {"axes" : axes , "title" : title , "method" : method }
537537 settings .update (kwargs )
538- settings ["standalone " ] = False
538+ settings ["show " ] = False
539539
540540 chromaticity_diagram_callable (** settings )
541541
542542 if show_pointer_gamut :
543543 settings = {"axes" : axes , "method" : method }
544544 settings .update (kwargs )
545- settings ["standalone " ] = False
545+ settings ["show " ] = False
546546
547547 plot_pointer_gamut (** settings )
548548
@@ -653,7 +653,7 @@ def xy_to_ij(xy: NDArrayFloat) -> NDArrayFloat:
653653
654654 settings .update (
655655 {
656- "standalone " : True ,
656+ "show " : True ,
657657 "legend" : True ,
658658 "bounding_box" : bounding_box ,
659659 }
@@ -1032,7 +1032,7 @@ def plot_RGB_chromaticities_in_chromaticity_diagram(
10321032 scatter_settings .update (scatter_kwargs )
10331033
10341034 settings = dict (kwargs )
1035- settings .update ({"axes" : axes , "standalone " : False })
1035+ settings .update ({"axes" : axes , "show " : False })
10361036
10371037 colourspace = cast (
10381038 RGB_Colourspace ,
@@ -1076,7 +1076,7 @@ def plot_RGB_chromaticities_in_chromaticity_diagram(
10761076
10771077 axes .scatter (ij [..., 0 ], ij [..., 1 ], ** scatter_settings )
10781078
1079- settings .update ({"standalone " : True })
1079+ settings .update ({"show " : True })
10801080 settings .update (kwargs )
10811081
10821082 return render (** settings )
@@ -1453,7 +1453,7 @@ def plot_ellipses_MacAdam1942_in_chromaticity_diagram(
14531453 _figure , axes = artist (** settings )
14541454
14551455 settings = dict (kwargs )
1456- settings .update ({"axes" : axes , "standalone " : False })
1456+ settings .update ({"axes" : axes , "show " : False })
14571457
14581458 ellipses_coefficients = ellipses_MacAdam1942 (method = method )
14591459
@@ -1512,7 +1512,7 @@ def plot_ellipses_MacAdam1942_in_chromaticity_diagram(
15121512 )
15131513 axes .add_artist (ellipse )
15141514
1515- settings .update ({"standalone " : True })
1515+ settings .update ({"show " : True })
15161516 settings .update (kwargs )
15171517
15181518 return render (** settings )
0 commit comments