Mii rendering and parsing library
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

minor cleanup in vfl

j0.lol 65f7fd5e 4e2b1096

+4 -4
+4 -4
vfl/src/draw/faceline.rs
··· 4 4 ( 5 5 vec![ 6 6 Vertex { 7 - position: [1.0 - 0.5, 0.0 - 0.5, 0.0], 7 + position: [0.5, -0.5, 0.0], 8 8 tex_coords: [0.0, 0.0], 9 9 normal: [0.0, 0.0, 0.0], 10 10 }, 11 11 Vertex { 12 - position: [1.0 - 0.5, 1.0 - 0.5, 0.0], 12 + position: [0.5, 0.5, 0.0], 13 13 tex_coords: [0.0, 1.0], 14 14 normal: [0.0, 0.0, 0.0], 15 15 }, 16 16 Vertex { 17 - position: [0.0 - 0.5, 1.0 - 0.5, 0.0], 17 + position: [-0.5, 0.5, 0.0], 18 18 tex_coords: [1.0, 1.0], 19 19 normal: [0.0, 0.0, 0.0], 20 20 }, 21 21 Vertex { 22 - position: [0.0 - 0.5, 0.0 - 0.5, 0.0], 22 + position: [-0.5, -0.5, 0.0], 23 23 tex_coords: [1.0, 0.0], 24 24 normal: [0.0, 0.0, 0.0], 25 25 },