2022-09-21 17:41:39 +02:00
|
|
|
---
|
|
|
|
title: Point.addCircle()
|
|
|
|
---
|
|
|
|
|
2022-09-27 19:15:57 +02:00
|
|
|
The `Point.addCircle()` method adds a circle to a Point. Under the hood, this
|
|
|
|
will call `Point.attr()` as circles are added by setting attributes. Refer to
|
|
|
|
[Drawing circles](/howtos/code/drawing-circles) for more details.
|
2022-09-21 17:41:39 +02:00
|
|
|
|
2022-09-27 19:15:57 +02:00
|
|
|
## Signature
|
2022-09-21 17:41:39 +02:00
|
|
|
|
|
|
|
```js
|
|
|
|
Point point.addCircle(
|
2022-12-30 07:47:29 -08:00
|
|
|
number radius,
|
2022-09-21 17:41:39 +02:00
|
|
|
string className
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2024-09-29 07:14:59 +02:00
|
|
|
:::tip
|
|
|
|
This method is chainable as it returns the `Point` object
|
|
|
|
:::
|
2022-09-29 17:43:32 +02:00
|
|
|
|
2022-09-27 19:15:57 +02:00
|
|
|
## Example
|
2022-09-21 17:41:39 +02:00
|
|
|
|
2022-09-27 19:15:57 +02:00
|
|
|
<Example caption="Examples of Point.addCircle(), compare this to [Point.setCircle](/reference/api/point/setcircle)">
|
2022-09-21 17:41:39 +02:00
|
|
|
```js
|
|
|
|
({ Point, points, part }) => {
|
|
|
|
points.a = new Point(30, 10)
|
|
|
|
.addCircle(3, 'lining dashed')
|
|
|
|
.addCircle(7, 'mark dashed')
|
|
|
|
|
2025-05-19 08:04:05 +02:00
|
|
|
points.b = new Point(50, 10)
|
|
|
|
.addCircle(1, 'interfacing')
|
|
|
|
.addCircle(3, 'fabric')
|
|
|
|
.addCircle(5, 'lining')
|
|
|
|
.addCircle(7, 'mark')
|
|
|
|
.addCircle(9, 'note')
|
|
|
|
|
|
|
|
points.c = new Point(70, 10)
|
|
|
|
.addCircle(3, 'interfacing')
|
|
|
|
.addCircle(7, 'mark lashed')
|
|
|
|
|
|
|
|
return part
|
2022-09-21 17:41:39 +02:00
|
|
|
}
|
|
|
|
```
|
2022-09-27 19:15:57 +02:00
|
|
|
</Example>
|