meta data for this page
This is an old revision of the document!
Polygon
A two dimensional shape with straight sides, and the shape is “closed” (all the sides connect up).
Learn about polygons at MathIsFun.com
NOTE: The ordering of points is VERY IMPORTANT. If the polygon is going to be extruded then the points must be in counter-clockwise order, otherwise the faces of the object will be facing inwards. See Orientation.
The following show examples of creating polygons from a list of points.
Defaults:
- empty
const { polygon } = require('@jscad/modeling').primitives const myshape = polygon({ points: [ [0,0],[3,0],[3,3] ] })