forked from patriciogonzalezvivo/lygia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdf.hlsl
45 lines (43 loc) · 1.22 KB
/
sdf.hlsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// 2D
#include "sdf/circleSDF.hlsl"
#include "sdf/crossSDF.hlsl"
#include "sdf/heartSDF.hlsl"
#include "sdf/hexSDF.hlsl"
#include "sdf/lineSDF.hlsl"
#include "sdf/polySDF.hlsl"
#include "sdf/rhombSDF.hlsl"
#include "sdf/spiralSDF.hlsl"
#include "sdf/starSDF.hlsl"
#include "sdf/superShapeSDF.hlsl"
#include "sdf/triSDF.hlsl"
#include "sdf/vesicaSDF.hlsl"
#include "sdf/flowerSDF.hlsl"
// 3D
#include "sdf/boxFrameSDF.hlsl"
#include "sdf/boxSDF.hlsl"
#include "sdf/capsuleSDF.hlsl"
#include "sdf/coneSDF.hlsl"
#include "sdf/cubeSDF.hlsl"
#include "sdf/cylinderSDF.hlsl"
#include "sdf/dodecahedronSDF.hlsl"
#include "sdf/ellipsoidSDF.hlsl"
#include "sdf/hexPrismSDF.hlsl"
#include "sdf/icosahedronSDF.hlsl"
#include "sdf/linkSDF.hlsl"
#include "sdf/mandelbulbSDF.hlsl"
#include "sdf/octahedronSDF.hlsl"
#include "sdf/octogonPrismSDF.hlsl"
#include "sdf/planeSDF.hlsl"
#include "sdf/pyramidSDF.hlsl"
#include "sdf/sphereSDF.hlsl"
#include "sdf/tetrahedronSDF.hlsl"
#include "sdf/torusSDF.hlsl"
#include "sdf/triPrismSDF.hlsl"
// Operations
#include "sdf/opOnion.hlsl"
#include "sdf/opRepeat.hlsl"
#include "sdf/opRevolve.hlsl"
#include "sdf/opRound.hlsl"
#include "sdf/opSubtraction.hlsl"
#include "sdf/opIntersection.hlsl"
#include "sdf/opUnion.hlsl"