Created
August 11, 2020 03:36
-
-
Save NicholasBallard/f4103dd47c5f2ea1e6507fa35a214258 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from dataclasses import dataclass | |
| @dataclass | |
| class Pixel: | |
| red: int | |
| green: int | |
| blue: int | |
| # alpha: float = 1 | |
| pixel = Pixel(255,0,0) | |
| pixel | |
| # returns: | |
| # Pixel(red=255, green=0, blue=0, alpha=1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment