AI로 유사한 모델 찾기
프로필 출력(0)
모델 파일(0)
게시일:2026-05-29 16:25:36
0
0
Hergestellt mitsdf2stl.saej.in
Vollständiger SDF-Code:
float sdGoursat(vec3 position, float radius) // 0 <= radius < .75 { float p4 = dot(position * position, position * position); float p2 = dot(position, position); // f(x,y,z) = x^4 + y^4 + z^4 - x^2 - y^2 - z^2 + radius float f = p4 - p2 + radius; // ∇f(x,y,z) = {4x^3 - 2x, 4y^3 - 2y, 4z^3 - 2z} vec3 df = 4. *