Coverage for pyguymer3/image/rgb2rgbComp.py: 50%
2 statements
« prev ^ index » next coverage.py v7.10.3, created at 2025-08-16 08:31 +0000
« prev ^ index » next coverage.py v7.10.3, created at 2025-08-16 08:31 +0000
1#!/usr/bin/env python3
3# Define function ...
4def rgb2rgbComp(r, g, b, /):
5 """
6 This function returns the RGB complementary colour of an RGB triplet.
7 """
9 # Return answer ...
10 return 255 - r, 255 - g, 255 - b