We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c53c176 commit da6dd09Copy full SHA for da6dd09
exercises/intro-4/files/box.glsl
@@ -1,10 +1,10 @@
1
-bool inBox(highp vec2 lo, highp vec2 hi, highp vec2 x) {
2
-
3
- //Test if the point x is inside the box bounded by [lo, hi]
4
+bool inBox(highp vec2 lo, highp vec2 hi, highp vec2 p) {
+
+ //Test if the point p is inside the box bounded by [lo, hi]
5
return false;
6
}
7
8
9
//Do not change this line or the name of the above function
10
-#pragma glslify: export(inBox)
+#pragma glslify: export(inBox)
0 commit comments