Skip to content
View flowb's full-sized avatar

Highlights

  • Pro

Block or report flowb

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 250 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. GLSL RGB to HSV GLSL RGB to HSV
    1
    vec3 RGBtoHSV(vec3 c) {
    2
    
                  
    3
    	float max = max(c.r,max(c.g,c.b)); // value
    4
    	float min = min(c.r,min(c.g,c.b));
    5
    
                  
  2. Astra-ColorTK Astra-ColorTK Public

    GLSL 5 1

  3. clock clock Public

    nannou clock example

    Rust