File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 < br > < a href ="test_obj.html "> lightwave obj file viewer</ a >
1616 < br > < a href ="test_sobel.html "> test sobel edge detection shader</ a >
1717 < br > < a href ="test_ssao.html "> test screen space ambient occlusion (SSAO) shader</ a >
18+ < br > < a href ="test_plasma.html "> test plasma shader</ a >
1819 </ body >
1920</ html >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class MeshData {
2727
2828 if ( textureCoords != null && ! (textureCoords is Float32List )) textureCoords = new Float32List .fromList (textureCoords);
2929
30- if ( normals = = null && ! (normals is Float32List )) normals = new Float32List .fromList (normals);
30+ if ( normals ! = null && ! (normals is Float32List )) normals = new Float32List .fromList (normals);
3131
3232 if (! (vertexIndices is Uint16List )) vertexIndices = new Uint16List .fromList (vertexIndices);
3333 }
You can’t perform that action at this time.
0 commit comments