Skip to content

Commit

Permalink
fix(examples): minor fix webgl-msdf demo
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jul 8, 2019
1 parent 8ec12a4 commit 294dc1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/webgl-msdf/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { map } from "@thi.ng/transducers";
import { AttribPool, GLType } from "@thi.ng/vector-pools";
import {
fit3,
madd,
madd3,
mixN,
mulN,
ReadonlyVec,
Expand Down Expand Up @@ -256,8 +256,8 @@ const app = () => {
if (!body) return;
adaptDPI(el, window.innerWidth, window.innerHeight);
// prettier-ignore
const eye = madd(
null,
const eye = madd3(
[],
mouse.deref() || ZERO3,
[2, 0.5, 0],
[0, -4, 5]
Expand Down

0 comments on commit 294dc1e

Please sign in to comment.