[Add a title above and insert a description of the issue here]

Note: If you are capturing from a browser there is limited support for screenshots, only captures the modeling scene.
If you are on MacOS native screenshots may be disabled by default. To enable native screenshots add Zoo Modeling App to System Settings -> Screen & SystemAudio Recording for native screenshots.
Core Dump
coredump-72c870c2-a899-43f5-b19f-140909c825b3.json
Reference ID: 72c870c2-a899-43f5-b19f-140909c825b3
KCL Code
@settings(defaultLengthUnit = mm)
// Define constants
width = 20
length = 10
thickness = 1
filletRadius = 2
coneHeight = 15
coneRadius = 5
// Create a sketch for the base rectangle
baseSketch = startSketchOn("XY")
|> startProfileAt([-width / 2, -length / 2], %)
|> lineTo([width / 2, -length / 2], %, $edge1)
|> lineTo([width / 2, length / 2], %, $edge2)
|> lineTo([-width / 2, length / 2], %, $edge3)
|> close(%, $edge4)
// Extrude the base rectangle to create a solid
baseSolid = extrude(thickness, baseSketch)
// Fillet all the edges of the solid
filletedSolid = fillet({
radius = filletRadius,
tags = [
getNextAdjacentEdge(edge1),
getNextAdjacentEdge(edge2),
getNextAdjacentEdge(edge3),
getNextAdjacentEdge(edge4)
]
}, baseSolid)
// Create a sketch for the circular base of the cone
coneBaseSketch = startSketchOn(baseSolid, 'end')
|> circle({ center = [0, 0], radius = coneRadius }, %)
// Extrude the circular base to create a cone
cone = extrude(coneHeight, coneBaseSketch)
[Add a title above and insert a description of the issue here]
Core Dump
coredump-72c870c2-a899-43f5-b19f-140909c825b3.json
Reference ID: 72c870c2-a899-43f5-b19f-140909c825b3
KCL Code