As example, we're using the proof that there's a path between homotopy1
and homotopy2
from Exercise 4.
Instead of looking at a circle, let's look at a general path
A path is a continuous function of type
As example, we're using the proof that there's a path between homotopy1
and homotopy2
from Exercise 4.
Instead of looking at a circle, let's look at a general path
A path is a continuous function of type
/** | |
* Color conversion algorithms (RGB, HSL, XYZ, LAB, LCH) | |
* Derived from jQuery Color Picker Sliders by István Ujj-Mészáros | |
* Licensed under the Apache License 2.0 | |
* https://github.com/istvan-ujjmeszaros/jquery-colorpickersliders | |
*/ | |
export function rgbToHsl(rgb) { | |
const r = rgb.r / 255 | |
const g = rgb.g / 255 |