Merge pull request #204 from broder/dimensional-spelling

Fix spelling of dimensional
This commit is contained in:
Patricio Gonzalez Vivo 2017-12-20 13:32:33 -08:00 committed by GitHub
commit b03dfa1fc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 11 additions and 11 deletions

View File

@ -34,7 +34,7 @@ More interestingly, we can use a matrix to rotate the coordinate system:
![](rotmat.png)
Take a look at the following code for a function that constructs a 2D rotation matrix. This function follows the above [formula](http://en.wikipedia.org/wiki/Rotation_matrix) for two dimentional vectors to rotate the coordinates around the ```vec2(0.0)``` point.
Take a look at the following code for a function that constructs a 2D rotation matrix. This function follows the above [formula](http://en.wikipedia.org/wiki/Rotation_matrix) for two dimensional vectors to rotate the coordinates around the ```vec2(0.0)``` point.
```glsl
mat2 rotate2d(float _angle){

View File

@ -27,7 +27,7 @@ void main(){
st *= 2.0; // becomes -1.0 to 1.0
// we pass st as the y & z values of
// a three dimentional vector to be
// a three dimensional vector to be
// properly multiply by a 3x3 matrix
color = yuv2rgb * vec3(0.5, st.x, st.y);

View File

@ -1,5 +1,5 @@
## Bvec2
2 dimentional boolean vector
2 dimensional boolean vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Bvec3
3 dimentional boolean vector
3 dimensional boolean vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Bvec4
4 dimentional boolean vector
4 dimensional boolean vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Ivec2
2 dimentional integer vector
2 dimensional integer vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Ivec3
3 dimentional integer vector
3 dimensional integer vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Ivec4
4 dimentional integer vector
4 dimensional integer vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Vec2
2 dimentional float point vector
2 dimensional floating point vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Vec3
3 dimentional floating point vector
3 dimensional floating point vector
### Declaration
```glsl

View File

@ -1,5 +1,5 @@
## Vec4
4 dimentional floating point vector
4 dimensional floating point vector
### Declaration
```glsl