Skip to content

Commit

Permalink
Merge pull request #601 from bakercp/patch-1
Browse files Browse the repository at this point in the history
Update how_to_use_glm.markdown
  • Loading branch information
arturoc committed May 9, 2018
2 parents 0d0f5b8 + 4d93d3f commit c4441c8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions learning/02_graphics/how_to_use_glm.markdown
Expand Up @@ -67,6 +67,17 @@ becomes
```c++
glm::length2(v)
```
And
```c++
a.getInterpolated(b, 0.5);
```

becomes

```c++
glm::mix(a, b, 0.5);
```
And
Expand Down

0 comments on commit c4441c8

Please sign in to comment.