1
0
Fork 0

more point docs updates

This commit is contained in:
Sanne Kalkman 2021-11-06 18:20:45 +01:00
parent 3b802a5b6a
commit 57048ecf1b
10 changed files with 63 additions and 38 deletions

View file

@ -5,10 +5,14 @@ title: Point.angle()
A point's `angle()` method returns the angle (in degrees) between this point and
the point passed into the method. An angle of 0° points to the right, and the angle increases counterclockwise.
## Point.angle() signature
```js
float point.angle(Point point)
float point.angle(Point pointB)
```
## Point.angle() Example
<Example
part="point_angle"
caption="An example of the Point.angle() method"