소스 검색

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())