From 4d93d3f4c149387430976e795d8b7e5ec4e69d13 Mon Sep 17 00:00:00 2001 From: Christopher Baker Date: Thu, 4 May 2017 23:03:57 -0500 Subject: [PATCH] Update how_to_use_glm.markdown --- learning/02_graphics/how_to_use_glm.markdown | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/learning/02_graphics/how_to_use_glm.markdown b/learning/02_graphics/how_to_use_glm.markdown index cd3ee3df8..909faefc2 100644 --- a/learning/02_graphics/how_to_use_glm.markdown +++ b/learning/02_graphics/how_to_use_glm.markdown @@ -67,6 +67,17 @@ becomes ```c++ glm::length2(v) ``` +And + +```c++ + a.getInterpolated(b, 0.5); +``` + +becomes + +```c++ +glm::mix(a, b, 0.5); +``` ### Containers