Skip to content
View BelmuTM's full-sized avatar
🌺
Beep Boop
🌺
Beep Boop
Block or Report

Block or report BelmuTM

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 100 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

  1. Noble Noble Public

    A Minecraft shaderpack that enhances one's experience with customizable settings and good-looking light simulations.

    GLSL 132 15

  2. BelmuUltraHardcore BelmuUltraHardcore Public

    UHC is a survival Battle Royale-like game in which your only way to regenerate your health is by eating golden apples.

    Java 2

  3. Butler Butler Public

    Butler is a Discord bot that features entertaining and useful functionalities such as a music player or an XP levelling system.

    Java

  4. BlockModelParser BlockModelParser Public

    Block model parser for Minecraft .json files

    Java

  5. Oren-Nayar Quantitative model - From... Oren-Nayar Quantitative model - From the original paper
    1
    #define EPS    1e-4
    2
    #define PI     3.14159265
    3
    #define INV_PI 0.31830988
    4
    
                  
    5
    float maxEps(float x)  { return max(EPS, x);        }
  6. GLSL Screen Space Raytracer - Free t... GLSL Screen Space Raytracer - Free to use for learning purposes
    1
    #define BINARY_REFINEMENT 1
    2
    #define BINARY_COUNT 4
    3
    #define BINARY_DECREASE 0.5
    4
    
                  
    5
    vec3 diagonal(mat4 mat) { return vec3(mat[0].x, mat[1].y, mat[2].z);      }