Skip to content

Instantly share code, notes, and snippets.

@herronelou
herronelou / irradiance_map.cpp
Last active July 9, 2019 16:27
WIP irradiance map blinkscript, has pinching issues. Adapted from https://learnopengl.com/PBR/IBL/Diffuse-irradiance
inline float3 uv_to_sphere(const float2 uv, const float2 image_size)
{
float2 st = (uv+float2(0.5f)) / image_size;
float latitude = (st.y - 0.5f) * PI;
float longitude = (st.x - 0.5f) * 2 * PI;
float radiusAtLat = cos(latitude);
float3 normal;
normal.x = radiusAtLat * cos(longitude);
normal.y = sin(latitude);
normal.z = radiusAtLat * sin(longitude);
@herronelou
herronelou / particle_setup.nk
Created May 20, 2019 07:21
Custom particle setup
Group {
name Point_Radial_Force
label "\[value strength]"
selected true
xpos 490
ypos -269
addUserKnob {20 User}
addUserKnob {7 strength l Strength}
strength -1
}