VYPR
Moderate severityOSV Advisory· Published Jan 28, 2026· Updated Jan 29, 2026

Maker.js Vulnerable to Unsafe Property Copying in makerjs.extendObject

CVE-2026-24888

Description

Maker.js is a 2D vector line drawing and shape modeling for CNC and laser cutters. In versions up to and including 0.19.1, the makerjs.extendObject function copies properties from source objects without proper validation, potentially exposing applications to security risks. The function lacks hasOwnProperty() checks and does not filter dangerous keys, allowing inherited properties and potentially malicious properties to be copied to target objects. A patch is available in commit 85e0f12bd868974b891601a141974f929dec36b8, which is expected to be part of version 0.19.2.

AI Insight

LLM-synthesized narrative grounded in this CVE's description and references.

Maker.js up to 0.19.1 has a prototype pollution vulnerability in `extendObject` due to missing `hasOwnProperty` checks and dangerous key filtering.

Vulnerability

Overview

CVE-2026-24888 is a prototype pollution vulnerability in Maker.js, a 2D vector line drawing library for CNC and laser cutters. The flaw resides in the makerjs.extendObject function, which copies properties from source objects to target objects without proper validation. Specifically, the function lacks hasOwnProperty() checks and does not filter dangerous keys like __proto__, constructor, or prototype. This allows inherited properties and potentially malicious properties to be copied properties to be introduced into target objects, leading to prototype pollution [1][2].

Exploitation

An attacker can exploit this vulnerability by crafting a source object with a __proto__ or constructor.prototype property containing malicious payloads. When extendObject is called with such a source, the dangerous properties are copied to the target object's prototype chain. This attack requires the ability to control the source object passed to extendObject, which may be possible through user-supplied input or deserialized data. No authentication is needed if the vulnerable function is exposed to untrusted data [2][4].

Impact

Successful exploitation allows an attacker to prototype pollution can lead to severe consequences, including arbitrary code execution, but not limited to, denial of service, property injection, and potentially remote code execution depending on how the polluted properties are used by the application. The vulnerability affects all versions of Maker.js up to and including 0.19.1 [1][2].

Mitigation

A fix has been implemented in commit 85e0f12bd868974b891601a141974f929dec36b8, which adds hasOwnProperty checks and filters dangerous keys. This fix is expected to be included in version 0.19.2. Users are advised to update to the patched version as soon as it is released [1][2].

AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
makerjsnpm
< 0.19.20.19.2

Affected products

2
  • Microsoft/Maker.jsOSV2 versions
    0.1.3, 0.2.1, 0.5.3, …+ 1 more
    • (no CPE)range: 0.1.3, 0.2.1, 0.5.3, …
    • (no CPE)range: <=0.19.1

Patches

1
85e0f12bd868

Fix extendObject to avoid prototype pollution (#645)

https://github.com/microsoft/maker.jsDan MarshallJan 27, 2026via ghsa
48 files changed · +142 139
  • docs/docs/api/index.html+19 19 modified
    @@ -191,7 +191,7 @@ <h3>$</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L958">src/maker.js/packages/maker.js/src/core/maker.ts:958</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L959">src/maker.js/packages/maker.js/src/core/maker.ts:959</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -218,7 +218,7 @@ <h4 class="tsd-returns-title">Returns <a href="interfaces/makerjs.icascademodel.
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L971">src/maker.js/packages/maker.js/src/core/maker.ts:971</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L972">src/maker.js/packages/maker.js/src/core/maker.ts:972</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -245,7 +245,7 @@ <h4 class="tsd-returns-title">Returns <a href="interfaces/makerjs.icascadepath.h
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L984">src/maker.js/packages/maker.js/src/core/maker.ts:984</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L985">src/maker.js/packages/maker.js/src/core/maker.ts:985</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -392,7 +392,7 @@ <h3>is<wbr>Chain</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L723">src/maker.js/packages/maker.js/src/core/maker.ts:723</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L724">src/maker.js/packages/maker.js/src/core/maker.ts:724</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -423,7 +423,7 @@ <h3>is<wbr>Function</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L249">src/maker.js/packages/maker.js/src/core/maker.ts:249</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L250">src/maker.js/packages/maker.js/src/core/maker.ts:250</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -455,7 +455,7 @@ <h3>is<wbr>Model</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L616">src/maker.js/packages/maker.js/src/core/maker.ts:616</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L617">src/maker.js/packages/maker.js/src/core/maker.ts:617</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -483,7 +483,7 @@ <h3>is<wbr>Number</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L259">src/maker.js/packages/maker.js/src/core/maker.ts:259</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L260">src/maker.js/packages/maker.js/src/core/maker.ts:260</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -515,7 +515,7 @@ <h3>is<wbr>Object</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L269">src/maker.js/packages/maker.js/src/core/maker.ts:269</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L270">src/maker.js/packages/maker.js/src/core/maker.ts:270</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -547,7 +547,7 @@ <h3>is<wbr>Path</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L372">src/maker.js/packages/maker.js/src/core/maker.ts:372</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L373">src/maker.js/packages/maker.js/src/core/maker.ts:373</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -578,7 +578,7 @@ <h3>is<wbr>Path<wbr>Arc</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L399">src/maker.js/packages/maker.js/src/core/maker.ts:399</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L400">src/maker.js/packages/maker.js/src/core/maker.ts:400</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -609,7 +609,7 @@ <h3>is<wbr>Path<wbr>Arc<wbr>InBezier<wbr>Curve</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L408">src/maker.js/packages/maker.js/src/core/maker.ts:408</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L409">src/maker.js/packages/maker.js/src/core/maker.ts:409</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -640,7 +640,7 @@ <h3>is<wbr>Path<wbr>Circle</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L390">src/maker.js/packages/maker.js/src/core/maker.ts:390</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L391">src/maker.js/packages/maker.js/src/core/maker.ts:391</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -671,7 +671,7 @@ <h3>is<wbr>Path<wbr>Line</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L381">src/maker.js/packages/maker.js/src/core/maker.ts:381</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L382">src/maker.js/packages/maker.js/src/core/maker.ts:382</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -702,7 +702,7 @@ <h3>is<wbr>Point</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L280">src/maker.js/packages/maker.js/src/core/maker.ts:280</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L281">src/maker.js/packages/maker.js/src/core/maker.ts:281</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -909,7 +909,7 @@ <h3>path<wbr>Type</h3>
     		<div class="tsd-signature tsd-kind-icon">path<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L421">src/maker.js/packages/maker.js/src/core/maker.ts:421</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L422">src/maker.js/packages/maker.js/src/core/maker.ts:422</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -927,7 +927,7 @@ <h3>Arc</h3>
     			<div class="tsd-signature tsd-kind-icon">Arc<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L424">src/maker.js/packages/maker.js/src/core/maker.ts:424</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L425">src/maker.js/packages/maker.js/src/core/maker.ts:425</a></li>
     				</ul>
     			</aside>
     		</section>
    @@ -937,7 +937,7 @@ <h3>Bezier<wbr>Seed</h3>
     			<div class="tsd-signature tsd-kind-icon">Bezier<wbr>Seed<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L425">src/maker.js/packages/maker.js/src/core/maker.ts:425</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L426">src/maker.js/packages/maker.js/src/core/maker.ts:426</a></li>
     				</ul>
     			</aside>
     		</section>
    @@ -947,7 +947,7 @@ <h3>Circle</h3>
     			<div class="tsd-signature tsd-kind-icon">Circle<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L423">src/maker.js/packages/maker.js/src/core/maker.ts:423</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L424">src/maker.js/packages/maker.js/src/core/maker.ts:424</a></li>
     				</ul>
     			</aside>
     		</section>
    @@ -957,7 +957,7 @@ <h3>Line</h3>
     			<div class="tsd-signature tsd-kind-icon">Line<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L422">src/maker.js/packages/maker.js/src/core/maker.ts:422</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L423">src/maker.js/packages/maker.js/src/core/maker.ts:423</a></li>
     				</ul>
     			</aside>
     		</section>
    
  • docs/docs/api/interfaces/makerjs.exporter.idxfrenderoptions.html+1 1 modified
    @@ -107,7 +107,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.exporter.ijscadcagoptions.html+1 1 modified
    @@ -104,7 +104,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.exporter.ijscadcsgoptions.html+1 1 modified
    @@ -148,7 +148,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.exporter.ijscadscriptoptions.html+1 1 modified
    @@ -173,7 +173,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.exporter.iopenjscadoptions.html+2 2 modified
    @@ -131,7 +131,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -147,7 +147,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> remove<wbr>From<wbr>O
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.ifindloopsoptions.html">IFindLoopsOptions</a>.<a href="makerjs.ifindloopsoptions.html#removefromoriginal">removeFromOriginal</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L573">src/maker.js/packages/maker.js/src/core/maker.ts:573</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L574">src/maker.js/packages/maker.js/src/core/maker.ts:574</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iboundinghex.html+1 1 modified
    @@ -173,7 +173,7 @@ <h3>radius</h3>
     		<div class="tsd-signature tsd-kind-icon">radius<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L830">src/maker.js/packages/maker.js/src/core/maker.ts:830</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L831">src/maker.js/packages/maker.js/src/core/maker.ts:831</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.icascade.html+3 3 modified
    @@ -52,7 +52,7 @@ <h3>$initial</h3>
     		<div class="tsd-signature tsd-kind-icon">$initial<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L903">src/maker.js/packages/maker.js/src/core/maker.ts:903</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L904">src/maker.js/packages/maker.js/src/core/maker.ts:904</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -67,7 +67,7 @@ <h3>$reset</h3>
     		<div class="tsd-signature tsd-kind-icon">$reset<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L913">src/maker.js/packages/maker.js/src/core/maker.ts:913</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L914">src/maker.js/packages/maker.js/src/core/maker.ts:914</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -97,7 +97,7 @@ <h3>$result</h3>
     		<div class="tsd-signature tsd-kind-icon">$result<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L908">src/maker.js/packages/maker.js/src/core/maker.ts:908</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L909">src/maker.js/packages/maker.js/src/core/maker.ts:909</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.icascademodel.html+3 3 modified
    @@ -72,7 +72,7 @@ <h3>$initial</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_initial">$initial</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L903">src/maker.js/packages/maker.js/src/core/maker.ts:903</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L904">src/maker.js/packages/maker.js/src/core/maker.ts:904</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -88,7 +88,7 @@ <h3>$reset</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_reset">$reset</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L913">src/maker.js/packages/maker.js/src/core/maker.ts:913</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L914">src/maker.js/packages/maker.js/src/core/maker.ts:914</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -119,7 +119,7 @@ <h3>$result</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_result">$result</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L908">src/maker.js/packages/maker.js/src/core/maker.ts:908</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L909">src/maker.js/packages/maker.js/src/core/maker.ts:909</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.icascadepath.html+3 3 modified
    @@ -58,7 +58,7 @@ <h3>$initial</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_initial">$initial</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L903">src/maker.js/packages/maker.js/src/core/maker.ts:903</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L904">src/maker.js/packages/maker.js/src/core/maker.ts:904</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -74,7 +74,7 @@ <h3>$reset</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_reset">$reset</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L913">src/maker.js/packages/maker.js/src/core/maker.ts:913</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L914">src/maker.js/packages/maker.js/src/core/maker.ts:914</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -105,7 +105,7 @@ <h3>$result</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_result">$result</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L908">src/maker.js/packages/maker.js/src/core/maker.ts:908</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L909">src/maker.js/packages/maker.js/src/core/maker.ts:909</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.icascadepoint.html+3 3 modified
    @@ -55,7 +55,7 @@ <h3>$initial</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_initial">$initial</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L903">src/maker.js/packages/maker.js/src/core/maker.ts:903</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L904">src/maker.js/packages/maker.js/src/core/maker.ts:904</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -71,7 +71,7 @@ <h3>$reset</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_reset">$reset</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L913">src/maker.js/packages/maker.js/src/core/maker.ts:913</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L914">src/maker.js/packages/maker.js/src/core/maker.ts:914</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -102,7 +102,7 @@ <h3>$result</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.icascademodel.html">ICascadeModel</a>.<a href="makerjs.icascademodel.html#_result">$result</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L908">src/maker.js/packages/maker.js/src/core/maker.ts:908</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L909">src/maker.js/packages/maker.js/src/core/maker.ts:909</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ichaincallback.html+1 1 modified
    @@ -27,7 +27,7 @@ <h3 class="tsd-before-signature">Callable</h3>
     		<li class="tsd-description">
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L731">src/maker.js/packages/maker.js/src/core/maker.ts:731</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L732">src/maker.js/packages/maker.js/src/core/maker.ts:732</a></li>
     				</ul>
     			</aside>
     			<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ichain.html+4 4 modified
    @@ -42,7 +42,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> contains</h3>
     		<div class="tsd-signature tsd-kind-icon">contains<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IChain[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L708">src/maker.js/packages/maker.js/src/core/maker.ts:708</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L709">src/maker.js/packages/maker.js/src/core/maker.ts:709</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -57,7 +57,7 @@ <h3>endless</h3>
     		<div class="tsd-signature tsd-kind-icon">endless<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L698">src/maker.js/packages/maker.js/src/core/maker.ts:698</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L699">src/maker.js/packages/maker.js/src/core/maker.ts:699</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -72,7 +72,7 @@ <h3>links</h3>
     		<div class="tsd-signature tsd-kind-icon">links<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IChainLink[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L693">src/maker.js/packages/maker.js/src/core/maker.ts:693</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L694">src/maker.js/packages/maker.js/src/core/maker.ts:694</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -87,7 +87,7 @@ <h3>path<wbr>Length</h3>
     		<div class="tsd-signature tsd-kind-icon">path<wbr>Length<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L703">src/maker.js/packages/maker.js/src/core/maker.ts:703</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L704">src/maker.js/packages/maker.js/src/core/maker.ts:704</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ichainlink.html+4 4 modified
    @@ -42,7 +42,7 @@ <h3>end<wbr>Points</h3>
     		<div class="tsd-signature tsd-kind-icon">end<wbr>Points<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IPoint[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L677">src/maker.js/packages/maker.js/src/core/maker.ts:677</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L678">src/maker.js/packages/maker.js/src/core/maker.ts:678</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -57,7 +57,7 @@ <h3>path<wbr>Length</h3>
     		<div class="tsd-signature tsd-kind-icon">path<wbr>Length<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L682">src/maker.js/packages/maker.js/src/core/maker.ts:682</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L683">src/maker.js/packages/maker.js/src/core/maker.ts:683</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -72,7 +72,7 @@ <h3>reversed</h3>
     		<div class="tsd-signature tsd-kind-icon">reversed<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L672">src/maker.js/packages/maker.js/src/core/maker.ts:672</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L673">src/maker.js/packages/maker.js/src/core/maker.ts:673</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -87,7 +87,7 @@ <h3>walked<wbr>Path</h3>
     		<div class="tsd-signature tsd-kind-icon">walked<wbr>Path<span class="tsd-signature-symbol">:</span> <a href="makerjs.iwalkpath.html" class="tsd-signature-type">IWalkPath</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L667">src/maker.js/packages/maker.js/src/core/maker.ts:667</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L668">src/maker.js/packages/maker.js/src/core/maker.ts:668</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.icombineoptions.html+6 6 modified
    @@ -49,7 +49,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> far<wbr>Point</h3>
     		<div class="tsd-signature tsd-kind-icon">far<wbr>Point<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L535">src/maker.js/packages/maker.js/src/core/maker.ts:535</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L536">src/maker.js/packages/maker.js/src/core/maker.ts:536</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -64,7 +64,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> measureA</h3>
     		<div class="tsd-signature tsd-kind-icon">measureA<span class="tsd-signature-symbol">:</span> <a href="../classes/makerjs.measure.atlas.html" class="tsd-signature-type">Atlas</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L540">src/maker.js/packages/maker.js/src/core/maker.ts:540</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L541">src/maker.js/packages/maker.js/src/core/maker.ts:541</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -79,7 +79,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> measureB</h3>
     		<div class="tsd-signature tsd-kind-icon">measureB<span class="tsd-signature-symbol">:</span> <a href="../classes/makerjs.measure.atlas.html" class="tsd-signature-type">Atlas</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L545">src/maker.js/packages/maker.js/src/core/maker.ts:545</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L546">src/maker.js/packages/maker.js/src/core/maker.ts:546</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -94,7 +94,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> out_<wbr>deleted</h3>
     		<div class="tsd-signature tsd-kind-icon">out_<wbr>deleted<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IModel[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L551">src/maker.js/packages/maker.js/src/core/maker.ts:551</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L552">src/maker.js/packages/maker.js/src/core/maker.ts:552</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -111,7 +111,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -126,7 +126,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> trim<wbr>Dead<wbr>End
     		<div class="tsd-signature tsd-kind-icon">trim<wbr>Dead<wbr>Ends<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L530">src/maker.js/packages/maker.js/src/core/maker.ts:530</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L531">src/maker.js/packages/maker.js/src/core/maker.ts:531</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.icontainchainsoptions.html+1 1 modified
    @@ -39,7 +39,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> alternate<wbr>Directi
     		<div class="tsd-signature tsd-kind-icon">alternate<wbr>Direction<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L769">src/maker.js/packages/maker.js/src/core/maker.ts:769</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L770">src/maker.js/packages/maker.js/src/core/maker.ts:770</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ifindchainsoptions.html+5 5 modified
    @@ -48,7 +48,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> by<wbr>Layers</h3>
     		<div class="tsd-signature tsd-kind-icon">by<wbr>Layers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L743">src/maker.js/packages/maker.js/src/core/maker.ts:743</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L744">src/maker.js/packages/maker.js/src/core/maker.ts:744</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -63,7 +63,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> contain</h3>
     		<div class="tsd-signature tsd-kind-icon">contain<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="makerjs.icontainchainsoptions.html" class="tsd-signature-type">IContainChainsOptions</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L753">src/maker.js/packages/maker.js/src/core/maker.ts:753</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L754">src/maker.js/packages/maker.js/src/core/maker.ts:754</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -79,7 +79,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -94,7 +94,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> shallow</h3>
     		<div class="tsd-signature tsd-kind-icon">shallow<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L748">src/maker.js/packages/maker.js/src/core/maker.ts:748</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L749">src/maker.js/packages/maker.js/src/core/maker.ts:749</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -109,7 +109,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> unify<wbr>Beziers</h3
     		<div class="tsd-signature tsd-kind-icon">unify<wbr>Beziers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L758">src/maker.js/packages/maker.js/src/core/maker.ts:758</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L759">src/maker.js/packages/maker.js/src/core/maker.ts:759</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ifindloopsoptions.html+2 2 modified
    @@ -51,7 +51,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -66,7 +66,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> remove<wbr>From<wbr>O
     		<div class="tsd-signature tsd-kind-icon">remove<wbr>From<wbr>Original<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L573">src/maker.js/packages/maker.js/src/core/maker.ts:573</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L574">src/maker.js/packages/maker.js/src/core/maker.ts:574</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iispointonpathoptions.html+1 1 modified
    @@ -39,7 +39,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> cached<wbr>Line<wbr>S
     		<div class="tsd-signature tsd-kind-icon">cached<wbr>Line<wbr>Slope<span class="tsd-signature-symbol">:</span> <a href="makerjs.islope.html" class="tsd-signature-type">ISlope</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L562">src/maker.js/packages/maker.js/src/core/maker.ts:562</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L563">src/maker.js/packages/maker.js/src/core/maker.ts:563</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ikit.html+3 3 modified
    @@ -50,7 +50,7 @@ <h3>constructor</h3>
     			<li class="tsd-description">
     				<aside class="tsd-sources">
     					<ul>
    -						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L874">src/maker.js/packages/maker.js/src/core/maker.ts:874</a></li>
    +						<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L875">src/maker.js/packages/maker.js/src/core/maker.ts:875</a></li>
     					</ul>
     				</aside>
     				<div class="tsd-comment tsd-typography">
    @@ -78,7 +78,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> meta<wbr>Parameters</
     		<div class="tsd-signature tsd-kind-icon">meta<wbr>Parameters<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IMetaParameter[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L886">src/maker.js/packages/maker.js/src/core/maker.ts:886</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L887">src/maker.js/packages/maker.js/src/core/maker.ts:887</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -94,7 +94,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> notes</h3>
     		<div class="tsd-signature tsd-kind-icon">notes<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L891">src/maker.js/packages/maker.js/src/core/maker.ts:891</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L892">src/maker.js/packages/maker.js/src/core/maker.ts:892</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.imeasure.html+2 2 modified
    @@ -45,7 +45,7 @@ <h3>high</h3>
     		<div class="tsd-signature tsd-kind-icon">high<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L297">src/maker.js/packages/maker.js/src/core/maker.ts:297</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L298">src/maker.js/packages/maker.js/src/core/maker.ts:298</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -60,7 +60,7 @@ <h3>low</h3>
     		<div class="tsd-signature tsd-kind-icon">low<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L292">src/maker.js/packages/maker.js/src/core/maker.ts:292</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L293">src/maker.js/packages/maker.js/src/core/maker.ts:293</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.imeasurepointinsideoptions.html+3 3 modified
    @@ -41,7 +41,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> far<wbr>Point</h3>
     		<div class="tsd-signature tsd-kind-icon">far<wbr>Point<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L354">src/maker.js/packages/maker.js/src/core/maker.ts:354</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L355">src/maker.js/packages/maker.js/src/core/maker.ts:355</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -56,7 +56,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> measure<wbr>Atlas</h3
     		<div class="tsd-signature tsd-kind-icon">measure<wbr>Atlas<span class="tsd-signature-symbol">:</span> <a href="../classes/makerjs.measure.atlas.html" class="tsd-signature-type">Atlas</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L359">src/maker.js/packages/maker.js/src/core/maker.ts:359</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L360">src/maker.js/packages/maker.js/src/core/maker.ts:360</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -71,7 +71,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> out_<wbr>intersection
     		<div class="tsd-signature tsd-kind-icon">out_<wbr>intersection<wbr>Points<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IPoint[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L364">src/maker.js/packages/maker.js/src/core/maker.ts:364</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L365">src/maker.js/packages/maker.js/src/core/maker.ts:365</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.imeasurewithcenter.html+5 5 modified
    @@ -48,7 +48,7 @@ <h3>center</h3>
     		<div class="tsd-signature tsd-kind-icon">center<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L308">src/maker.js/packages/maker.js/src/core/maker.ts:308</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L309">src/maker.js/packages/maker.js/src/core/maker.ts:309</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -63,7 +63,7 @@ <h3>height</h3>
     		<div class="tsd-signature tsd-kind-icon">height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L318">src/maker.js/packages/maker.js/src/core/maker.ts:318</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L319">src/maker.js/packages/maker.js/src/core/maker.ts:319</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -79,7 +79,7 @@ <h3>high</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.imeasure.html">IMeasure</a>.<a href="makerjs.imeasure.html#high">high</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L297">src/maker.js/packages/maker.js/src/core/maker.ts:297</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L298">src/maker.js/packages/maker.js/src/core/maker.ts:298</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -95,7 +95,7 @@ <h3>low</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.imeasure.html">IMeasure</a>.<a href="makerjs.imeasure.html#low">low</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L292">src/maker.js/packages/maker.js/src/core/maker.ts:292</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L293">src/maker.js/packages/maker.js/src/core/maker.ts:293</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -110,7 +110,7 @@ <h3>width</h3>
     		<div class="tsd-signature tsd-kind-icon">width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L313">src/maker.js/packages/maker.js/src/core/maker.ts:313</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L314">src/maker.js/packages/maker.js/src/core/maker.ts:314</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.imetaparameter.html+6 6 modified
    @@ -44,7 +44,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> max</h3>
     		<div class="tsd-signature tsd-kind-icon">max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L858">src/maker.js/packages/maker.js/src/core/maker.ts:858</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L859">src/maker.js/packages/maker.js/src/core/maker.ts:859</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -59,7 +59,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> min</h3>
     		<div class="tsd-signature tsd-kind-icon">min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L853">src/maker.js/packages/maker.js/src/core/maker.ts:853</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L854">src/maker.js/packages/maker.js/src/core/maker.ts:854</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -74,7 +74,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> step</h3>
     		<div class="tsd-signature tsd-kind-icon">step<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L863">src/maker.js/packages/maker.js/src/core/maker.ts:863</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L864">src/maker.js/packages/maker.js/src/core/maker.ts:864</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -89,7 +89,7 @@ <h3>title</h3>
     		<div class="tsd-signature tsd-kind-icon">title<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L843">src/maker.js/packages/maker.js/src/core/maker.ts:843</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L844">src/maker.js/packages/maker.js/src/core/maker.ts:844</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -104,7 +104,7 @@ <h3>type</h3>
     		<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L848">src/maker.js/packages/maker.js/src/core/maker.ts:848</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L849">src/maker.js/packages/maker.js/src/core/maker.ts:849</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -119,7 +119,7 @@ <h3>value</h3>
     		<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L868">src/maker.js/packages/maker.js/src/core/maker.ts:868</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L869">src/maker.js/packages/maker.js/src/core/maker.ts:869</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.imodelpathcallback.html+1 1 modified
    @@ -27,7 +27,7 @@ <h3 class="tsd-before-signature">Callable</h3>
     		<li class="tsd-description">
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L609">src/maker.js/packages/maker.js/src/core/maker.ts:609</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L610">src/maker.js/packages/maker.js/src/core/maker.ts:610</a></li>
     				</ul>
     			</aside>
     			<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ipathdirectional.html+2 2 modified
    @@ -48,7 +48,7 @@ <h3>end<wbr>Points</h3>
     		<div class="tsd-signature tsd-kind-icon">end<wbr>Points<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IPoint[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L596">src/maker.js/packages/maker.js/src/core/maker.ts:596</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L597">src/maker.js/packages/maker.js/src/core/maker.ts:597</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -95,7 +95,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> reversed</h3>
     		<div class="tsd-signature tsd-kind-icon">reversed<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L601">src/maker.js/packages/maker.js/src/core/maker.ts:601</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L602">src/maker.js/packages/maker.js/src/core/maker.ts:602</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ipathintersectionbaseoptions.html+2 2 modified
    @@ -45,7 +45,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> exclude<wbr>Tangents<
     		<div class="tsd-signature tsd-kind-icon">exclude<wbr>Tangents<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L462">src/maker.js/packages/maker.js/src/core/maker.ts:462</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L463">src/maker.js/packages/maker.js/src/core/maker.ts:463</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -60,7 +60,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> out_<wbr><wbr>Are<wbr
     		<div class="tsd-signature tsd-kind-icon">out_<wbr><wbr>Are<wbr>Overlapped<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L467">src/maker.js/packages/maker.js/src/core/maker.ts:467</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L468">src/maker.js/packages/maker.js/src/core/maker.ts:468</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ipathintersection.html+3 3 modified
    @@ -41,7 +41,7 @@ <h3>intersection<wbr>Points</h3>
     		<div class="tsd-signature tsd-kind-icon">intersection<wbr>Points<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IPoint[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L494">src/maker.js/packages/maker.js/src/core/maker.ts:494</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L495">src/maker.js/packages/maker.js/src/core/maker.ts:495</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -56,7 +56,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> path1<wbr>Angles</h3>
     		<div class="tsd-signature tsd-kind-icon">path1<wbr>Angles<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L501">src/maker.js/packages/maker.js/src/core/maker.ts:501</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L502">src/maker.js/packages/maker.js/src/core/maker.ts:502</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -73,7 +73,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> path2<wbr>Angles</h3>
     		<div class="tsd-signature tsd-kind-icon">path2<wbr>Angles<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L508">src/maker.js/packages/maker.js/src/core/maker.ts:508</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L509">src/maker.js/packages/maker.js/src/core/maker.ts:509</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ipathintersectionoptions.html+4 4 modified
    @@ -48,7 +48,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> exclude<wbr>Tangents<
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.ipathintersectionbaseoptions.html">IPathIntersectionBaseOptions</a>.<a href="makerjs.ipathintersectionbaseoptions.html#excludetangents">excludeTangents</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L462">src/maker.js/packages/maker.js/src/core/maker.ts:462</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L463">src/maker.js/packages/maker.js/src/core/maker.ts:463</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -64,7 +64,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> out_<wbr><wbr>Are<wbr
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.ipathintersectionbaseoptions.html">IPathIntersectionBaseOptions</a>.<a href="makerjs.ipathintersectionbaseoptions.html#out_areoverlapped">out_AreOverlapped</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L467">src/maker.js/packages/maker.js/src/core/maker.ts:467</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L468">src/maker.js/packages/maker.js/src/core/maker.ts:468</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -79,7 +79,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> path1<wbr>Offset</h3>
     		<div class="tsd-signature tsd-kind-icon">path1<wbr>Offset<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L478">src/maker.js/packages/maker.js/src/core/maker.ts:478</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L479">src/maker.js/packages/maker.js/src/core/maker.ts:479</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -94,7 +94,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> path2<wbr>Offset</h3>
     		<div class="tsd-signature tsd-kind-icon">path2<wbr>Offset<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L483">src/maker.js/packages/maker.js/src/core/maker.ts:483</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L484">src/maker.js/packages/maker.js/src/core/maker.ts:484</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ipathremoved.html+2 2 modified
    @@ -80,7 +80,7 @@ <h3>reason</h3>
     		<div class="tsd-signature tsd-kind-icon">reason<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L338">src/maker.js/packages/maker.js/src/core/maker.ts:338</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L339">src/maker.js/packages/maker.js/src/core/maker.ts:339</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -95,7 +95,7 @@ <h3>route<wbr>Key</h3>
     		<div class="tsd-signature tsd-kind-icon">route<wbr>Key<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L343">src/maker.js/packages/maker.js/src/core/maker.ts:343</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L344">src/maker.js/packages/maker.js/src/core/maker.ts:344</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.ipointmatchoptions.html+1 1 modified
    @@ -59,7 +59,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<div class="tsd-signature tsd-kind-icon">point<wbr>Matching<wbr>Distance<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.irefmodelinmodel.html+3 3 modified
    @@ -46,7 +46,7 @@ <h3>child<wbr>Id</h3>
     		<div class="tsd-signature tsd-kind-icon">child<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L777">src/maker.js/packages/maker.js/src/core/maker.ts:777</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L778">src/maker.js/packages/maker.js/src/core/maker.ts:778</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -56,7 +56,7 @@ <h3>child<wbr>Model</h3>
     		<div class="tsd-signature tsd-kind-icon">child<wbr>Model<span class="tsd-signature-symbol">:</span> <a href="makerjs.imodel.html" class="tsd-signature-type">IModel</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L778">src/maker.js/packages/maker.js/src/core/maker.ts:778</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L779">src/maker.js/packages/maker.js/src/core/maker.ts:779</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -66,7 +66,7 @@ <h3>parent<wbr>Model</h3>
     		<div class="tsd-signature tsd-kind-icon">parent<wbr>Model<span class="tsd-signature-symbol">:</span> <a href="makerjs.imodel.html" class="tsd-signature-type">IModel</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L776">src/maker.js/packages/maker.js/src/core/maker.ts:776</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L777">src/maker.js/packages/maker.js/src/core/maker.ts:777</a></li>
     			</ul>
     		</aside>
     	</section>
    
  • docs/docs/api/interfaces/makerjs.irefpathidinmodel.html+2 2 modified
    @@ -45,7 +45,7 @@ <h3>model<wbr>Context</h3>
     		<div class="tsd-signature tsd-kind-icon">model<wbr>Context<span class="tsd-signature-symbol">:</span> <a href="makerjs.imodel.html" class="tsd-signature-type">IModel</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L624">src/maker.js/packages/maker.js/src/core/maker.ts:624</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L625">src/maker.js/packages/maker.js/src/core/maker.ts:625</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -55,7 +55,7 @@ <h3>path<wbr>Id</h3>
     		<div class="tsd-signature tsd-kind-icon">path<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L625">src/maker.js/packages/maker.js/src/core/maker.ts:625</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L626">src/maker.js/packages/maker.js/src/core/maker.ts:626</a></li>
     			</ul>
     		</aside>
     	</section>
    
  • docs/docs/api/interfaces/makerjs.irouteoffset.html+4 4 modified
    @@ -50,7 +50,7 @@ <h3>layer</h3>
     		<div class="tsd-signature tsd-kind-icon">layer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L632">src/maker.js/packages/maker.js/src/core/maker.ts:632</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L633">src/maker.js/packages/maker.js/src/core/maker.ts:633</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -60,7 +60,7 @@ <h3>offset</h3>
     		<div class="tsd-signature tsd-kind-icon">offset<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipoint.html" class="tsd-signature-type">IPoint</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L633">src/maker.js/packages/maker.js/src/core/maker.ts:633</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L634">src/maker.js/packages/maker.js/src/core/maker.ts:634</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -70,7 +70,7 @@ <h3>route</h3>
     		<div class="tsd-signature tsd-kind-icon">route<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string[]</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L634">src/maker.js/packages/maker.js/src/core/maker.ts:634</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L635">src/maker.js/packages/maker.js/src/core/maker.ts:635</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -80,7 +80,7 @@ <h3>route<wbr>Key</h3>
     		<div class="tsd-signature tsd-kind-icon">route<wbr>Key<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L635">src/maker.js/packages/maker.js/src/core/maker.ts:635</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L636">src/maker.js/packages/maker.js/src/core/maker.ts:636</a></li>
     			</ul>
     		</aside>
     	</section>
    
  • docs/docs/api/interfaces/makerjs.isimplifyoptions.html+2 2 modified
    @@ -46,7 +46,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> point<wbr>Matching<wb
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -61,7 +61,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> scalar<wbr>Matching<w
     		<div class="tsd-signature tsd-kind-icon">scalar<wbr>Matching<wbr>Distance<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L584">src/maker.js/packages/maker.js/src/core/maker.ts:584</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L585">src/maker.js/packages/maker.js/src/core/maker.ts:585</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.islope.html+4 4 modified
    @@ -42,7 +42,7 @@ <h3>has<wbr>Slope</h3>
     		<div class="tsd-signature tsd-kind-icon">has<wbr>Slope<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L436">src/maker.js/packages/maker.js/src/core/maker.ts:436</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L437">src/maker.js/packages/maker.js/src/core/maker.ts:437</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -57,7 +57,7 @@ <h3>line</h3>
     		<div class="tsd-signature tsd-kind-icon">line<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipathline.html" class="tsd-signature-type">IPathLine</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L446">src/maker.js/packages/maker.js/src/core/maker.ts:446</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L447">src/maker.js/packages/maker.js/src/core/maker.ts:447</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -72,7 +72,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> slope</h3>
     		<div class="tsd-signature tsd-kind-icon">slope<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L441">src/maker.js/packages/maker.js/src/core/maker.ts:441</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L442">src/maker.js/packages/maker.js/src/core/maker.ts:442</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -87,7 +87,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> y<wbr>Intercept</h3>
     		<div class="tsd-signature tsd-kind-icon">y<wbr>Intercept<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L451">src/maker.js/packages/maker.js/src/core/maker.ts:451</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L452">src/maker.js/packages/maker.js/src/core/maker.ts:452</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iwalkmodelcallback.html+1 1 modified
    @@ -27,7 +27,7 @@ <h3 class="tsd-before-signature">Callable</h3>
     		<li class="tsd-description">
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L790">src/maker.js/packages/maker.js/src/core/maker.ts:790</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L791">src/maker.js/packages/maker.js/src/core/maker.ts:791</a></li>
     				</ul>
     			</aside>
     			<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iwalkmodelcancellablecallback.html+1 1 modified
    @@ -27,7 +27,7 @@ <h3 class="tsd-before-signature">Callable</h3>
     		<li class="tsd-description">
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L797">src/maker.js/packages/maker.js/src/core/maker.ts:797</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L798">src/maker.js/packages/maker.js/src/core/maker.ts:798</a></li>
     				</ul>
     			</aside>
     			<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iwalkmodel.html+7 7 modified
    @@ -54,7 +54,7 @@ <h3>child<wbr>Id</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.irefmodelinmodel.html">IRefModelInModel</a>.<a href="makerjs.irefmodelinmodel.html#childid">childId</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L777">src/maker.js/packages/maker.js/src/core/maker.ts:777</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L778">src/maker.js/packages/maker.js/src/core/maker.ts:778</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -65,7 +65,7 @@ <h3>child<wbr>Model</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.irefmodelinmodel.html">IRefModelInModel</a>.<a href="makerjs.irefmodelinmodel.html#childmodel">childModel</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L778">src/maker.js/packages/maker.js/src/core/maker.ts:778</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L779">src/maker.js/packages/maker.js/src/core/maker.ts:779</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -76,7 +76,7 @@ <h3>layer</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.layer</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L632">src/maker.js/packages/maker.js/src/core/maker.ts:632</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L633">src/maker.js/packages/maker.js/src/core/maker.ts:633</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -87,7 +87,7 @@ <h3>offset</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.offset</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L633">src/maker.js/packages/maker.js/src/core/maker.ts:633</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L634">src/maker.js/packages/maker.js/src/core/maker.ts:634</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -98,7 +98,7 @@ <h3>parent<wbr>Model</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from <a href="makerjs.irefmodelinmodel.html">IRefModelInModel</a>.<a href="makerjs.irefmodelinmodel.html#parentmodel">parentModel</a></p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L776">src/maker.js/packages/maker.js/src/core/maker.ts:776</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L777">src/maker.js/packages/maker.js/src/core/maker.ts:777</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -109,7 +109,7 @@ <h3>route</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.route</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L634">src/maker.js/packages/maker.js/src/core/maker.ts:634</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L635">src/maker.js/packages/maker.js/src/core/maker.ts:635</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -120,7 +120,7 @@ <h3>route<wbr>Key</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.routeKey</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L635">src/maker.js/packages/maker.js/src/core/maker.ts:635</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L636">src/maker.js/packages/maker.js/src/core/maker.ts:636</a></li>
     			</ul>
     		</aside>
     	</section>
    
  • docs/docs/api/interfaces/makerjs.iwalkoptions.html+3 3 modified
    @@ -41,7 +41,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> after<wbr>Child<wbr>W
     		<div class="tsd-signature tsd-kind-icon">after<wbr>Child<wbr>Walk<span class="tsd-signature-symbol">:</span> <a href="makerjs.iwalkmodelcallback.html" class="tsd-signature-type">IWalkModelCallback</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L819">src/maker.js/packages/maker.js/src/core/maker.ts:819</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L820">src/maker.js/packages/maker.js/src/core/maker.ts:820</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -56,7 +56,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> before<wbr>Child<wbr>
     		<div class="tsd-signature tsd-kind-icon">before<wbr>Child<wbr>Walk<span class="tsd-signature-symbol">:</span> <a href="makerjs.iwalkmodelcancellablecallback.html" class="tsd-signature-type">IWalkModelCancellableCallback</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L814">src/maker.js/packages/maker.js/src/core/maker.ts:814</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L815">src/maker.js/packages/maker.js/src/core/maker.ts:815</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    @@ -71,7 +71,7 @@ <h3><span class="tsd-flag ts-flagOptional">Optional</span> on<wbr>Path</h3>
     		<div class="tsd-signature tsd-kind-icon">on<wbr>Path<span class="tsd-signature-symbol">:</span> <a href="makerjs.iwalkpathcallback.html" class="tsd-signature-type">IWalkPathCallback</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L809">src/maker.js/packages/maker.js/src/core/maker.ts:809</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L810">src/maker.js/packages/maker.js/src/core/maker.ts:810</a></li>
     			</ul>
     		</aside>
     		<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iwalkpathbooleancallback.html+1 1 modified
    @@ -27,7 +27,7 @@ <h3 class="tsd-before-signature">Callable</h3>
     		<li class="tsd-description">
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L655">src/maker.js/packages/maker.js/src/core/maker.ts:655</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L656">src/maker.js/packages/maker.js/src/core/maker.ts:656</a></li>
     				</ul>
     			</aside>
     			<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iwalkpathcallback.html+1 1 modified
    @@ -27,7 +27,7 @@ <h3 class="tsd-before-signature">Callable</h3>
     		<li class="tsd-description">
     			<aside class="tsd-sources">
     				<ul>
    -					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L648">src/maker.js/packages/maker.js/src/core/maker.ts:648</a></li>
    +					<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L649">src/maker.js/packages/maker.js/src/core/maker.ts:649</a></li>
     				</ul>
     			</aside>
     			<div class="tsd-comment tsd-typography">
    
  • docs/docs/api/interfaces/makerjs.iwalkpath.html+7 7 modified
    @@ -54,7 +54,7 @@ <h3>layer</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.layer</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L632">src/maker.js/packages/maker.js/src/core/maker.ts:632</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L633">src/maker.js/packages/maker.js/src/core/maker.ts:633</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -65,7 +65,7 @@ <h3>model<wbr>Context</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRefPathIdInModel.modelContext</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L624">src/maker.js/packages/maker.js/src/core/maker.ts:624</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L625">src/maker.js/packages/maker.js/src/core/maker.ts:625</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -76,7 +76,7 @@ <h3>offset</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.offset</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L633">src/maker.js/packages/maker.js/src/core/maker.ts:633</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L634">src/maker.js/packages/maker.js/src/core/maker.ts:634</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -86,7 +86,7 @@ <h3>path<wbr>Context</h3>
     		<div class="tsd-signature tsd-kind-icon">path<wbr>Context<span class="tsd-signature-symbol">:</span> <a href="makerjs.ipath.html" class="tsd-signature-type">IPath</a></div>
     		<aside class="tsd-sources">
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L642">src/maker.js/packages/maker.js/src/core/maker.ts:642</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L643">src/maker.js/packages/maker.js/src/core/maker.ts:643</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -97,7 +97,7 @@ <h3>path<wbr>Id</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRefPathIdInModel.pathId</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L625">src/maker.js/packages/maker.js/src/core/maker.ts:625</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L626">src/maker.js/packages/maker.js/src/core/maker.ts:626</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -108,7 +108,7 @@ <h3>route</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.route</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L634">src/maker.js/packages/maker.js/src/core/maker.ts:634</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L635">src/maker.js/packages/maker.js/src/core/maker.ts:635</a></li>
     			</ul>
     		</aside>
     	</section>
    @@ -119,7 +119,7 @@ <h3>route<wbr>Key</h3>
     		<aside class="tsd-sources">
     			<p>Inherited from IRouteOffset.routeKey</p>
     			<ul>
    -				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L635">src/maker.js/packages/maker.js/src/core/maker.ts:635</a></li>
    +				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L636">src/maker.js/packages/maker.js/src/core/maker.ts:636</a></li>
     			</ul>
     		</aside>
     	</section>
    
  • docs/target/js/browser.maker.js+5 3 modified
    @@ -39,7 +39,7 @@ and limitations under the License.
      *   author: Dan Marshall / Microsoft Corporation
      *   maintainers: Dan Marshall <danmar@microsoft.com>
      *   homepage: https://maker.js.org
    - *   version: 0.19.1
    + *   version: 0.19.2
      *
      * browserify:
      *   license: MIT (http://opensource.org/licenses/MIT)
    @@ -670,7 +670,9 @@ var MakerJs;
         function extendObject(target, other) {
             if (target && other) {
                 for (var key in other) {
    -                if (typeof other[key] !== 'undefined') {
    +                if (other.hasOwnProperty(key) && typeof other[key] !== 'undefined') {
    +                    if (key === '__proto__' || key === 'constructor' || key === 'prototype')
    +                        continue;
                         target[key] = other[key];
                     }
                 }
    @@ -10532,7 +10534,7 @@ var MakerJs;
             ];
         })(models = MakerJs.models || (MakerJs.models = {}));
     })(MakerJs || (MakerJs = {}));
    -MakerJs.version = "0.19.1";
    +MakerJs.version = "0.19.2";
     
     }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
     },{"clone":2,"graham_scan":3,"kdbush":4}]},{},[]);
    
  • package-lock.json+1 1 modified
    @@ -4524,7 +4524,7 @@
         },
         "packages/maker.js": {
           "name": "makerjs",
    -      "version": "0.19.1",
    +      "version": "0.19.2",
           "license": "Apache-2.0",
           "dependencies": {
             "@danmarshall/jscad-typings": "^1.0.0",
    
  • packages/maker.js/package.json+1 1 modified
    @@ -1,6 +1,6 @@
     {
       "name": "makerjs",
    -  "version": "0.19.1",
    +  "version": "0.19.2",
       "description": "Maker.js, a Microsoft Garage project, is a JavaScript library for creating and sharing modular line drawings for CNC and laser cutters.",
       "main": "dist/index.js",
       "types": "dist/index.d.ts",
    
  • packages/maker.js/package-lock.json+1 1 modified
    @@ -1,6 +1,6 @@
     {
     	"name": "makerjs",
    -	"version": "0.19.1",
    +	"version": "0.19.2",
     	"lockfileVersion": 1,
     	"requires": true,
     	"dependencies": {
    
  • packages/maker.js/src/core/maker.ts+2 1 modified
    @@ -232,7 +232,8 @@ namespace MakerJs {
         export function extendObject(target: Object, other: Object) {
             if (target && other) {
                 for (var key in other) {
    -                if (typeof other[key] !== 'undefined') {
    +                if (other.hasOwnProperty(key) && typeof other[key] !== 'undefined') {
    +                    if (key === '__proto__' || key === 'constructor' || key === 'prototype') continue;
                         target[key] = other[key];
                     }
                 }
    

Vulnerability mechanics

Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.