many changes

This commit is contained in:
Akko
2023-05-15 16:22:28 +02:00
parent 2964bd30a6
commit d6388cf912
289 changed files with 6506 additions and 0 deletions

12
gradientmesh/util.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env ipython
def clamp(val, low, high):
return min(high, max(low, val))
def rgb2hex(r, g, b, a=None):
hex_value = "#{:02x}{:02x}{:02x}".format(
int(r * 255),
int(g * 255),
int(b * 255)
)
return hex_value