* Show a more reasonable name in function docs Signed-off-by: Nick Cameron <nrc@ncameron.org> * Fix buggy docs for union types Signed-off-by: Nick Cameron <nrc@ncameron.org> * Make types in the docs signatures into links Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
69 lines
136 KiB
Markdown
69 lines
136 KiB
Markdown
---
|
|
title: "polygon"
|
|
excerpt: "Create a regular polygon with the specified number of sides that is either inscribed or circumscribed around a circle of the specified radius."
|
|
layout: manual
|
|
---
|
|
|
|
Create a regular polygon with the specified number of sides that is either inscribed or circumscribed around a circle of the specified radius.
|
|
|
|
|
|
|
|
```kcl
|
|
polygon(
|
|
sketchSurfaceOrGroup: [[Sketch](/docs/kcl/types/Sketch)OrSurface](/docs/kcl/types/[Sketch](/docs/kcl/types/Sketch)OrSurface),
|
|
radius: [number](/docs/kcl/types/number),
|
|
numSides: u64,
|
|
center: [[[number](/docs/kcl/types/number)]](/docs/kcl/types/[number](/docs/kcl/types/number)),
|
|
inscribed?: [bool](/docs/kcl/types/bool),
|
|
): [Sketch](/docs/kcl/types/Sketch)
|
|
```
|
|
|
|
|
|
### Arguments
|
|
|
|
| Name | Type | Description | Required |
|
|
|----------|------|-------------|----------|
|
|
| `sketchSurfaceOrGroup` | [`SketchOrSurface`](/docs/kcl/types/SketchOrSurface) | Plane or surface to sketch on | Yes |
|
|
| `radius` | [`number`](/docs/kcl/types/number) | The radius of the polygon | Yes |
|
|
| `numSides` | `u64` | The number of sides in the polygon | Yes |
|
|
| `center` | [`[number]`](/docs/kcl/types/number) | The center point of the polygon | Yes |
|
|
| `inscribed` | [`bool`](/docs/kcl/types/bool) | Whether the polygon is inscribed (true, the default) or circumscribed (false) about a circle with the specified radius | No |
|
|
|
|
### Returns
|
|
|
|
[`Sketch`](/docs/kcl/types/Sketch)
|
|
|
|
|
|
### Examples
|
|
|
|
```kcl
|
|
// Create a regular hexagon inscribed in a circle of radius 10
|
|
hex = startSketchOn(XY)
|
|
|> polygon(
|
|
radius = 10,
|
|
numSides = 6,
|
|
center = [0, 0],
|
|
inscribed = true,
|
|
)
|
|
|
|
example = extrude(hex, length = 5)
|
|
```
|
|
|
|

|
|
|
|
```kcl
|
|
// Create a square circumscribed around a circle of radius 5
|
|
square = startSketchOn(XY)
|
|
|> polygon(
|
|
radius = 5.0,
|
|
numSides = 4,
|
|
center = [10, 10],
|
|
inscribed = false,
|
|
)
|
|
example = extrude(square, length = 5)
|
|
```
|
|
|
|

|
|
|
|
|