Update snippets/vectorAngle.md

Co-Authored-By: Angelos Chalaris <chalarangelo@gmail.com>
This commit is contained in:
ShraddhaBhojane
2019-12-22 16:36:29 +01:00
committed by GitHub
parent 053b88314a
commit 841f36044f

View File

@ -1,6 +1,6 @@
---
title: vectorAngle
tags: math,intermediate
tags: math,beginner
---
Returns the angle (theta) value between two vectors.
@ -33,4 +33,4 @@ const theta = ((...x) =>{
```js
theta(3,4,4,3); // 0.283794109208328
```
```