Files
modeling-app/docs/kcl/polygon.md
Nick Cameron 66f6b741c4 Support = in record initialisation (#4519)
Signed-off-by: Nick Cameron <nrc@ncameron.org>
2024-11-24 20:21:55 +00:00

132 KiB

title, excerpt, layout
title excerpt layout
polygon Create a regular polygon with the specified number of sides that is either inscribed or circumscribed around a circle of the specified radius. manual

Create a regular polygon with the specified number of sides that is either inscribed or circumscribed around a circle of the specified radius.

polygon(data: PolygonData, sketch_surface_or_group: SketchOrSurface, tag?: TagDeclarator) -> Sketch

Arguments

Name Type Description Required
data PolygonData Data for drawing a polygon Yes
sketch_surface_or_group SketchOrSurface A sketch surface or a sketch. Yes
tag TagDeclarator No

Returns

Sketch - A sketch is a collection of paths.

Examples

// 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(5, hex)

Rendered example of polygon 0

// 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(5, square)

Rendered example of polygon 1