parent
3f010bc2f6
commit
a47c167edf
11 changed files with 107 additions and 115 deletions
@ -1,6 +1,6 @@ |
||||
#!/usr/bin/env bash |
||||
glslc shader.vert -o vert.spv |
||||
glslc shader.frag -o frag.spv |
||||
glslc pbd.comp -o pbd.spv |
||||
glslc --target-env=vulkan1.1 pbd.comp -o pbd.spv |
||||
glslc normal.comp -o normal.spv |
||||
glslc grab.comp -o grab.spv |
@ -0,0 +1,38 @@ |
||||
struct Vertex { |
||||
vec3 position; |
||||
vec2 uv; |
||||
uvec3 normal; |
||||
vec3 velocity; |
||||
vec3 prevPosition; |
||||
float inverseMass; |
||||
}; |
||||
|
||||
struct Face { |
||||
uint a; |
||||
uint b; |
||||
uint c; |
||||
}; |
||||
|
||||
struct Edge { |
||||
uint a; |
||||
uint b; |
||||
float restLength; |
||||
float compliance; |
||||
}; |
||||
|
||||
struct Triangle { |
||||
uint a; |
||||
uint b; |
||||
uint c; |
||||
float restArea; |
||||
float compliance; |
||||
}; |
||||
|
||||
struct Tetrahedron { |
||||
uint a; |
||||
uint b; |
||||
uint c; |
||||
uint d; |
||||
float restVolume; |
||||
float compliance; |
||||
}; |
Loading…
Reference in new issue