--- title: sewTogether --- The `sewTogether` macro is used to mark where two parts of the same `part` need to be sewn together. This happens when you want to construct a cone for instance. It is provided by [plugin-annotations](/reference/plugins/annotations/). ## Signature ```js macro('sewTogether', { Point from, Point to, Point middle = null, Boolean hinge = false, String prefix = 'sewtogether', }) ``` ## Example ```js ({ Point, points, Path, paths, macro, part }) => { points.seamTL = new Point(0,0) points.seamM = new Point(30,-10) points.seamTR = new Point(60,0) paths.seam = new Path() .move(points.seamTL) .line(points.seamM) .line(points.seamTR) .attr('class', 'fabric') points.from = new Point(45,-5) points.to = new Point(15,-5) points.middle = points.seamM.copy() macro('sewTogether', { from: points.from, to: points.to, middle: points.middle, hinge: true, }) return part } ``` ## Configuration | Property | Default | Type | Description | |----------------:|----------|---------------------|-------------| | `from` | | [Point](/reference/api/point) | One side of what needs to be sewn together | | `to` | | [Point](/reference/api/point) | The other side of what needs to be sewn together | | `middle` | null | [Point](/reference/api/point) | The middle point (when ommitted, it will be halfway between `from` and `to`) | | `prefix` | 'sewtogether' | String | The prefix to be used for creating all the points and paths | | `hinge ` | `false` | Boolean | Draws the hinge line | ## Result | Generated Element | Description | |-------------------|-------------| | `points.${prefix}From` | Copy of the `from` Point | | `points.${prefix}FromCP` | Control Point of the `from` Point | | `points.${prefix}Middle` | Copy of the `middle` Point | | `points.${prefix}To` | Copy of the `to` Point | | `points.${prefix}ToCP` | Control Point of the `to` Point | | `points.${prefix}Hinge` | Point for the hinge line | | `paths.${prefix}SewTogether` | Path forming the line | | `paths.${prefix}SewTogetherHinge` | Path forming the hinge line | ## Notes This macro is aware of the `sa` setting. Normally it draws the hinge line on the inside of the part (following the counter-clockwise standard). When the `sa` is provided it draws the hinge line on the outside, up to the `sa` line.