首页 > 其他分享 >玫瑰代码

玫瑰代码

时间:2023-04-12 18:02:26浏览次数:24  
标签:return 0.0 代码 float pos 玫瑰 vec2 vec3

#include <stdio.h>

#include <math.h>

 

const int max_iterations = 128;

const float stop_threshold = 0.01f;

const float grad_step = 0.01f;

const float clip_far = 10.0f;

 

const float PI = 3.14159265359f;

const float PI2 = 6.28318530718f;

const float DEG_TO_RAD = PI / 180.0f;

 

typedef struct { float x, y; } vec2;

typedef struct { float x, y, z; } vec3;

typedef struct { float m[9]; } mat3;

 

const vec3 light_pos = { 20.0f, 50.0f, 20.0f };

 

float min(float a, float b) { return a < b ? a : b; }

float max(float a, float b) { return a > b ? a : b; }

float clamp(float f, float a, float b) { return max(min(f, b), a); }

vec2 make2(float x, float y) { vec2 r = { x, y }; return r; }

vec2 add2(vec2 a, vec2 b) { vec2 r = { a.x + b.x, a.y + b.y }; return r; }

vec2 sub2(vec2 a, vec2 b) { vec2 r = { a.x - b.x, a.y - b.y }; return r; }

float dot2(vec2 a, vec2 b) { return a.x * b.x + a.y * b.y; }

float length2(vec2 v) { return sqrt(dot2(v, v)); }

vec3 make3(float x, float y, float z) { vec3 r = { x, y, z }; return r; }

vec3 add3(vec3 a, vec3 b) { vec3 r = { a.x + b.x, a.y + b.y, a.z + b.z }; return r; }

vec3 sub3(vec3 a, vec3 b) { vec3 r = { a.x - b.x, a.y - b.y, a.z - b.z }; return r; }

vec3 mul3(vec3 a, vec3 b) { vec3 r = { a.x * b.x, a.y * b.y, a.z * b.z }; return r; }

vec3 scale3(vec3 v, float s) { vec3 r = { v.x * s, v.y * s, v.z * s }; return r; }

float dot3(vec3 a, vec3 b) { return a.x * b.x + a.y * b.y + a.z * b.z; }

float length3(vec3 v) { return sqrt(dot3(v, v)); }

vec3 normalize3(vec3 v) { return scale3(v, 1.0f / length3(v)); }

vec3 mul(mat3 m, vec3 v) {

return make3(

        m.m[0] * v.x + m.m[3] * v.y + m.m[6] * v.z,

        m.m[1] * v.x + m.m[4] * v.y + m.m[7] * v.z,

        m.m[2] * v.x + m.m[5] * v.y + m.m[8] * v.z);

}

 

mat3 rotationXY(float x, float y) {

    vec2 c = { cos(x), cos(y) }, s = { sin(x), sin(y) };

    mat3 m = {

        c.y      , 0.0f, -s.y,

        s.y * s.x,  c.x,  c.y * s.x,

        s.y * c.x, -s.x,  c.y * c.x

    };

    return m;

}

 

float opI(float d1, float d2) { return max(d1, d2); }

float opU(float d1, float d2) { return min(d1, d2); }

float opS(float d1, float d2) { return max(-d1, d2); }

 

float sdPetal(vec3 p, float s) {

    p = add3(mul3(p, make3(0.8f, 1.5f, 0.8f)), make3(0.1f, 0.0f, 0.0f));

    vec2 q = make2(length2(make2(p.x, p.z)), p.y);

 

    float lower = length2(q) - 1.0f;

    lower = opS(length2(q) - 0.97f, lower);

    lower = opI(lower, q.y);

 

    float upper = length2(sub2(q, make2(s, 0.0f))) + 1.0f - s;

    upper = opS(upper, length2(sub2(q, make2(s, 0.0f))) + 0.97f - s);

    upper = opI(upper, -q.y);

    upper = opI(upper, q.x - 2.0f);

 

    float region = length3(sub3(p, make3(1.0f, 0.0f, 0.0f))) - 1.0f;

    return opI(opU(upper, lower), region);

}

 

float map(vec3 p) {

    float d = 1000.0f, s = 2.0f;

    mat3 r = rotationXY(0.1f, PI2 * 0.618034f);

    r.m[0] *= 1.08f;  r.m[1] *= 1.08f;  r.m[2] *= 1.08f;

    r.m[3] *= 0.995f; r.m[4] *= 0.995f; r.m[5] *= 0.995f;

    r.m[6] *= 1.08f;  r.m[7] *= 1.08f;  r.m[8] *= 1.08f;

    for (int i = 0; i < 21; i++) {

        d = opU(d, sdPetal(p, s));

        p = mul(r, p);

        p = add3(p, make3(0.0, -0.02, 0.0));

        s *= 1.05f;

    }

    return d;

}

 

vec3 gradient(vec3 pos) {

    const vec3 dx = { grad_step, 0.0, 0.0 };

    const vec3 dy = { 0.0, grad_step, 0.0 };

    const vec3 dz = { 0.0, 0.0, grad_step };

    return normalize3(make3(

        map(add3(pos, dx)) - map(sub3(pos, dx)),

        map(add3(pos, dy)) - map(sub3(pos, dy)),

        map(add3(pos, dz)) - map(sub3(pos, dz))));

}

 

float ray_marching(vec3 origin, vec3 dir, float start, float end) {

    float depth = start;

    for (int i = 0; i < max_iterations; i++) {

        float dist = map(add3(origin, scale3(dir, depth)));

        if (dist < stop_threshold)

            return depth;

        depth += dist * 0.3;

        if (depth >= end)

            return end;

    }

    return end;

}

 

float shading(vec3 v, vec3 n, vec3 eye) {

    vec3 ev = normalize3(sub3(v, eye));

    vec3 vl = normalize3(sub3(light_pos, v));

    float diffuse = dot3(vl, n) * 0.5f + 0.5f;

    vec3 h = normalize3(sub3(vl, ev));

    float rim = pow(1.0f - max(-dot3(n, ev), 0.0f), 2.0f) * 0.15f;

    float ao = clamp(v.y * 0.5f + 0.5f, 0.0f, 1.0f);

    return (diffuse + rim) * ao;

}

 

vec3 ray_dir(float fov, vec2 pos) {

    vec3 r = { pos.x, pos.y, -tan((90.0f - fov * 0.5f) * DEG_TO_RAD) };

    return normalize3(r);

}

 

float f(vec2 fragCoord) {

    vec3 dir = ray_dir(45.0f, fragCoord);

    vec3 eye = { 0.0f, 0.0f, 4.5f };

    mat3 rot = rotationXY(-1.0f, 1.0f);

 

    dir = mul(rot, dir);

    eye = mul(rot, eye);

 

    float depth = ray_marching(eye, dir, 0.0f, clip_far);

    vec3 pos = add3(eye, scale3(dir, depth));

    if (depth >= clip_far)

        return 0.0f;

    else

        return shading(pos, gradient(pos), eye);

}

int main() {

    puts("\033[91m");

    for (int y = 0; y < 80; y++) {

        for (int x = 0; x < 160; x++)

            putchar("  .,-:;+=*#@"[(int)(f(make2((x / 160.0f - 0.5f) * 2.0f, (y / 80.0f - 0.5f) * -2.0f)) * 12.0f)]);

        putchar('\n');

    }

}

标签:return,0.0,代码,float,pos,玫瑰,vec2,vec3
From: https://blog.51cto.com/u_15810943/6186010

相关文章

  • SpringBoot启动后获取特定注解的Bean实例代码(转)
    来自:https://zhuanlan.zhihu.com/p/375973197本文研究的主要是Spring启动后获取所有拥有特定注解的Bean,具体如下。最近项目中遇到一个业务场景,就是在Spring容器启动后获取所有的Bean中实现了一个特定接口的对象,第一个想到的是ApplicationContextAware,在setApplicationContext中......
  • 基于低代码开发平台打造新时代OA系统
    一场新冠疫情令协同办公成为全民热词,加上国家数字化经济建设的背景加持,加速协同办公的进一步发展,而OA作为最基础的行政办公管理系统,几乎成为企业必备,想要通过OA协同办公系统来建立无纸化、流程化及自动化办公环境的企业不计其数。然而通过传统开发的OA系统,整体管理模式相对陈旧,企......
  • git-cz 代码提交统一规范配置
    Angular提交规范-GitGuide(zjdoc-gitguide.readthedocs.io)主要插件commitizen:代码提交辅助工具commitlint:代码校验工具husky:githook插件lint-staged:前端文件过滤工具,只检测暂存区代码cz-customizable:自定义提交配置安装步骤1.环境准备git版本,笔者使用......
  • AI对关于用vue构建低代码平台的认识
    写一个完整的低代码平台需要考虑到很多方面,包括需求分析、架构设计、UI/UX设计、后端开发以及前端实现等。下面是一个实现Vue低代码平台的大致步骤:1.需求分析:明确低代码平台的核心功能和用户需求,例如表单设计器、流程设计器、报表设计器、数据可视化等。2.架构设计:根据需求分......
  • 【常用代码】-枚举、常量
    常量contants采用接口(Interface)中变量默认为staticfinal的特性publicinterfaceConstants{StringLOGIN_KEY="OTA:VEHICLE:LOGIN";}publicfinalstaticStringOTA_TASK="OTA_TASK";枚举packagecom.mycar.mycar.car.server.enums;importlombo......
  • 直播平台软件开发,Android代码模拟触摸、点击及滑动等事件
    直播平台软件开发,Android代码模拟触摸、点击及滑动等事件一、应用中模拟物理和屏幕点击事件 例如,模拟对某个view的点击事件 privatevoidsimulateClick(Viewview,floatx,floaty){  longdownTime=SystemClock.uptimeMillis();  finalMotionEventdownEve......
  • 第十二篇 手写原理代码 - 实现一个前端并发控制请求函数
    实现并发控制请求函数/***并发控制请求函数*@param{Array}urls请求的URL数组*@param{Number}max最大并发数*@param{Function}callback请求成功回调函数*/asyncfunctionconcurrentRequest(urls,max,callback){constlen=urls.length;//用......
  • 第十三篇 手写原理代码 - 实现 Promise
    当使用JavaScript进行异步编程时,我们往往需要面对回调地狱(callbackhell)、代码可读性低、错误处理困难等问题。为了解决这些问题,ECMAScript6(ES6)中引入了Promise。Promise是一种用于处理异步操作的对象,它是一个容器,保存着未来才会结束的事件(通常是一个异步操作),并提供了一组......
  • 第十一篇 手写原理代码 - 实现事件订阅中类
    javaScript中的订阅发布模式(也称为观察者模式)是一种设计模式,用于在对象之间的事件通信中。该模式由两部分构成:发布者和订阅者。发布者持有所有订阅者的引用,在某个事件发生时通知所有的订阅者,从而触发它们的相应行为。这种模式可以用于解耦发布者和订阅者之间的依赖关系,从而实......
  • Scheme语言在线代码运行编译工具推荐
    Scheme语言在线运行编译,是一款可在线编程编辑器,在编辑器上输入Scheme语言代码,点击运行,可在线编译运行Scheme语言,Scheme语言代码在线运行调试,Scheme语言在线编译,可快速在线测试您的Scheme语言代码,在线编译Scheme语言代码发现是否存在错误,如果代码测试通过,将会输出编译后的......