浏览代码

Fix README example;

bjorn 6 年之前
父节点
当前提交
f00b63d148
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -22,7 +22,7 @@ local a = maf.vector(1, 2, 3)
 local b = maf.vector(4, 5, 6)
 
 local c = a + b
-local d = maf.rotation():between(a, b)
+local d = maf.rotation.between(a, b)
 
 print(c:unpack())
 print(d:getAngleAxis())