addBevelJoin method

void addBevelJoin(
  1. LineSegment offset0,
  2. LineSegment offset1
)

Adds a bevel join connecting the two offset segments around a reflex corner.

@param offset0 the first offset segment @param offset1 the second offset segment

Implementation

void addBevelJoin(LineSegment offset0, LineSegment offset1) {
  segList.addPt(offset0.p1);
  segList.addPt(offset1.p0);
}