UNPKG

forge-svf-utils

Version:

Utilities for working with Autodesk Forge SVF file format.

953 lines 57.6 kB
<!doctype html>
<html class="default no-js">
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title>Reader | forge-svf-utils</title>
	<meta name="description" content="">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
	<div class="tsd-page-toolbar">
		<div class="container">
			<div class="table-wrap">
				<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
					<div class="field">
						<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
						<input id="tsd-search-field" type="text" />
					</div>
					<ul class="results">
						<li class="state loading">Preparing search index...</li>
						<li class="state failure">The search index is not available</li>
					</ul>
					<a href="../index.html" class="title">forge-svf-utils</a>
				</div>
				<div class="table-cell" id="tsd-widgets">
					<div id="tsd-filter">
						<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
						<div class="tsd-filter-group">
							<div class="tsd-select" id="tsd-filter-visibility">
								<span class="tsd-select-label">All</span>
								<ul class="tsd-select-list">
									<li data-value="public">Public</li>
									<li data-value="protected">Public/Protected</li>
									<li data-value="private" class="selected">All</li>
								</ul>
							</div>
							<input type="checkbox" id="tsd-filter-inherited" checked />
							<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
							<input type="checkbox" id="tsd-filter-externals" checked />
							<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
							<input type="checkbox" id="tsd-filter-only-exported" />
							<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
						</div>
					</div>
					<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
				</div>
			</div>
		</div>
	</div>
	<div class="tsd-page-title">
		<div class="container">
			<ul class="tsd-breadcrumb">
				<li>
					<a href="../globals.html">Globals</a>
				</li>
				<li>
					<a href="../modules/_svf_reader_.html">&quot;svf/reader&quot;</a>
				</li>
				<li>
					<a href="_svf_reader_.reader.html">Reader</a>
				</li>
			</ul>
			<h1>Class Reader</h1>
		</div>
	</div>
</header>
<div class="container container-main">
	<div class="row">
		<div class="col-8 col-content">
			<section class="tsd-panel tsd-comment">
				<div class="tsd-comment tsd-typography">
					<div class="lead">
						<p>Utility class for parsing &amp; reading SVF content from Model Derivative service
						or from local file system.</p>
					</div>
					<p>The class can only be instantiated using one of the two async static methods:
						<a href="_svf_reader_.reader.html#fromfilesystem">Reader.FromFileSystem</a>, or <a href="_svf_reader_.reader.html#fromderivativeservice">Reader.FromDerivativeService</a>.
						After that, you can parse the entire SVF into memory using {@link parse}, or parse
					individual SVF objects using methods like {@link listFragments} or <a href="_svf_reader_.reader.html#enumerategeometries">enumerateGeometries</a>.</p>
					<dl class="tsd-comment-tags">
						<dt>example</dt>
						<dd><p>const auth = { client_id: &#39;forge client id&#39;, client_secret: &#39;forge client secreet&#39; };
								const reader = await Reader.FromDerivativeService(&#39;model urn&#39;, &#39;viewable guid&#39;, auth);
								const svf = await reader.read(); // Read entire SVF into memory
							console.log(svf);</p>
						</dd>
						<dt>example</dt>
						<dd><p>const reader = await Reader.FromFileSystem(&#39;path/to/svf&#39;);
								// Enumerate fragments (without building a list of all of them)
								for await (const fragment of reader.enumerateFragments()) {
								console.log(fragment);
							}</p>
						</dd>
					</dl>
				</div>
			</section>
			<section class="tsd-panel tsd-hierarchy">
				<h3>Hierarchy</h3>
				<ul class="tsd-hierarchy">
					<li>
						<span class="target">Reader</span>
					</li>
				</ul>
			</section>
			<section class="tsd-panel-group tsd-index-group">
				<h2>Index</h2>
				<section class="tsd-panel tsd-index-panel">
					<div class="tsd-index-content">
						<section class="tsd-index-section tsd-is-private-protected">
							<h3>Constructors</h3>
							<ul class="tsd-index-list">
								<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-protected"><a href="_svf_reader_.reader.html#constructor" class="tsd-kind-icon">constructor</a></li>
							</ul>
						</section>
						<section class="tsd-index-section tsd-is-private-protected">
							<h3>Properties</h3>
							<ul class="tsd-index-list">
								<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><a href="_svf_reader_.reader.html#resolve" class="tsd-kind-icon">resolve</a></li>
								<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><a href="_svf_reader_.reader.html#svf" class="tsd-kind-icon">svf</a></li>
							</ul>
						</section>
						<section class="tsd-index-section ">
							<h3>Methods</h3>
							<ul class="tsd-index-list">
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#enumeratefragments" class="tsd-kind-icon">enumerate<wbr>Fragments</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#enumerategeometries" class="tsd-kind-icon">enumerate<wbr>Geometries</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#enumeratematerials" class="tsd-kind-icon">enumerate<wbr>Materials</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#enumeratemeshpack" class="tsd-kind-icon">enumerate<wbr>Mesh<wbr>Pack</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><a href="_svf_reader_.reader.html#findasset" class="tsd-kind-icon">find<wbr>Asset</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#getasset" class="tsd-kind-icon">get<wbr>Asset</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#getmeshpackcount" class="tsd-kind-icon">get<wbr>Mesh<wbr>Pack<wbr>Count</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#getmetadata" class="tsd-kind-icon">get<wbr>Metadata</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#getpropertydb" class="tsd-kind-icon">get<wbr>Property<wbr>Db</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#listimages" class="tsd-kind-icon">list<wbr>Images</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#read" class="tsd-kind-icon">read</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#readfragments" class="tsd-kind-icon">read<wbr>Fragments</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#readgeometries" class="tsd-kind-icon">read<wbr>Geometries</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#readmaterials" class="tsd-kind-icon">read<wbr>Materials</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class"><a href="_svf_reader_.reader.html#readmeshpack" class="tsd-kind-icon">read<wbr>Mesh<wbr>Pack</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="_svf_reader_.reader.html#fromderivativeservice" class="tsd-kind-icon">From<wbr>Derivative<wbr>Service</a></li>
								<li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="_svf_reader_.reader.html#fromfilesystem" class="tsd-kind-icon">From<wbr>File<wbr>System</a></li>
							</ul>
						</section>
					</div>
				</section>
			</section>
			<section class="tsd-panel-group tsd-member-group tsd-is-private-protected">
				<h2>Constructors</h2>
				<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-protected">
					<a name="constructor" class="tsd-anchor"></a>
					<h3><span class="tsd-flag ts-flagProtected">Protected</span> constructor</h3>
					<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-protected">
						<li class="tsd-signature tsd-kind-icon">new <wbr>Reader<span class="tsd-signature-symbol">(</span>svf<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span>, resolve<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="_svf_reader_.reader.html" class="tsd-signature-type">Reader</a></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L93">svf/reader.ts:93</a></li>
								</ul>
							</aside>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>svf: <span class="tsd-signature-type">Buffer</span></h5>
								</li>
								<li>
									<h5>resolve: <span class="tsd-signature-type">function</span></h5>
									<ul class="tsd-parameters">
										<li class="tsd-parameter-siganture">
											<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
												<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>uri<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">&gt;</span></li>
											</ul>
											<ul class="tsd-descriptions">
												<li class="tsd-description">
													<h4 class="tsd-parameters-title">Parameters</h4>
													<ul class="tsd-parameters">
														<li>
															<h5>uri: <span class="tsd-signature-type">string</span></h5>
														</li>
													</ul>
													<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">&gt;</span></h4>
												</li>
											</ul>
										</li>
									</ul>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <a href="_svf_reader_.reader.html" class="tsd-signature-type">Reader</a></h4>
						</li>
					</ul>
				</section>
			</section>
			<section class="tsd-panel-group tsd-member-group tsd-is-private-protected">
				<h2>Properties</h2>
				<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-protected">
					<a name="resolve" class="tsd-anchor"></a>
					<h3><span class="tsd-flag ts-flagProtected">Protected</span> resolve</h3>
					<div class="tsd-signature tsd-kind-icon">resolve<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/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L95">svf/reader.ts:95</a></li>
						</ul>
					</aside>
					<div class="tsd-type-declaration">
						<h4>Type declaration</h4>
						<ul class="tsd-parameters">
							<li class="tsd-parameter-siganture">
								<ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-class tsd-is-not-exported">
									<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>uri<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">&gt;</span></li>
								</ul>
								<ul class="tsd-descriptions">
									<li class="tsd-description">
										<h4 class="tsd-parameters-title">Parameters</h4>
										<ul class="tsd-parameters">
											<li>
												<h5>uri: <span class="tsd-signature-type">string</span></h5>
											</li>
										</ul>
										<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">&gt;</span></h4>
									</li>
								</ul>
							</li>
						</ul>
					</div>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-protected">
					<a name="svf" class="tsd-anchor"></a>
					<h3><span class="tsd-flag ts-flagProtected">Protected</span> svf</h3>
					<div class="tsd-signature tsd-kind-icon">svf<span class="tsd-signature-symbol">:</span> <a href="../interfaces/_svf_schema_.isvfroot.html" class="tsd-signature-type">ISvfRoot</a></div>
					<aside class="tsd-sources">
						<ul>
							<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L93">svf/reader.ts:93</a></li>
						</ul>
					</aside>
				</section>
			</section>
			<section class="tsd-panel-group tsd-member-group ">
				<h2>Methods</h2>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="enumeratefragments" class="tsd-anchor"></a>
					<h3>enumerate<wbr>Fragments</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">enumerate<wbr>Fragments<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.ifragment.html" class="tsd-signature-type">IFragment</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L188">svf/reader.ts:188</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and iterates over all SVF fragments.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
									<dt>generator</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.ifragment.html" class="tsd-signature-type">IFragment</a><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Async iterator over parsed fragments.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="enumerategeometries" class="tsd-anchor"></a>
					<h3>enumerate<wbr>Geometries</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">enumerate<wbr>Geometries<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.igeometrymetadata.html" class="tsd-signature-type">IGeometryMetadata</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L219">svf/reader.ts:219</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and iterates over all SVF geometry metadata.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
									<dt>generator</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.igeometrymetadata.html" class="tsd-signature-type">IGeometryMetadata</a><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Async iterator over parsed geometry metadata.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="enumeratematerials" class="tsd-anchor"></a>
					<h3>enumerate<wbr>Materials</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">enumerate<wbr>Materials<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.imaterial.html" class="tsd-signature-type">IMaterial</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L299">svf/reader.ts:299</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and iterates over all SVF materials.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
									<dt>generator</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.imaterial.html" class="tsd-signature-type">IMaterial</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Async iterator over parsed materials
							(or null values for unsupported material types).</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="enumeratemeshpack" class="tsd-anchor"></a>
					<h3>enumerate<wbr>Mesh<wbr>Pack</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">enumerate<wbr>Mesh<wbr>Pack<span class="tsd-signature-symbol">(</span>packNumber<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.imesh.html" class="tsd-signature-type">IMesh</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ilines.html" class="tsd-signature-type">ILines</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ipoints.html" class="tsd-signature-type">IPoints</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L265">svf/reader.ts:265</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and iterates over all meshes, lines, or points in a specific SVF meshpack.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
									<dt>generator</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>packNumber: <span class="tsd-signature-type">number</span></h5>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">AsyncIterable</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.imesh.html" class="tsd-signature-type">IMesh</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ilines.html" class="tsd-signature-type">ILines</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ipoints.html" class="tsd-signature-type">IPoints</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Async iterator over parsed meshes,
							lines, or points (or null values for unsupported mesh types).</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-protected">
					<a name="findasset" class="tsd-anchor"></a>
					<h3><span class="tsd-flag ts-flagProtected">Protected</span> find<wbr>Asset</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-protected">
						<li class="tsd-signature tsd-kind-icon">find<wbr>Asset<span class="tsd-signature-symbol">(</span>query<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/_svf_schema_.isvfmanifestasset.html" class="tsd-signature-type">ISvfManifestAsset</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L156">svf/reader.ts:156</a></li>
								</ul>
							</aside>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>query: <span class="tsd-signature-type">object</span></h5>
									<ul class="tsd-parameters">
										<li class="tsd-parameter">
											<h5><span class="tsd-flag ts-flagOptional">Optional</span> type<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">schema.AssetType</span></h5>
										</li>
										<li class="tsd-parameter">
											<h5><span class="tsd-flag ts-flagOptional">Optional</span> uri<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
										</li>
									</ul>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <a href="../interfaces/_svf_schema_.isvfmanifestasset.html" class="tsd-signature-type">ISvfManifestAsset</a>
								<span class="tsd-signature-symbol"> | </span>
								<span class="tsd-signature-type">undefined</span>
							</h4>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="getasset" class="tsd-anchor"></a>
					<h3>get<wbr>Asset</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">get<wbr>Asset<span class="tsd-signature-symbol">(</span>uri<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L169">svf/reader.ts:169</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves raw binary data of a specific SVF asset.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>uri: <span class="tsd-signature-type">string</span></h5>
									<div class="tsd-comment tsd-typography">
										<p>Asset URI.</p>
									</div>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Asset content.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="getmeshpackcount" class="tsd-anchor"></a>
					<h3>get<wbr>Mesh<wbr>Pack<wbr>Count</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">get<wbr>Mesh<wbr>Pack<wbr>Count<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L248">svf/reader.ts:248</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Gets the number of available mesh packs.</p>
								</div>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="getmetadata" class="tsd-anchor"></a>
					<h3>get<wbr>Metadata</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">get<wbr>Metadata<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.isvfmetadata.html" class="tsd-signature-type">ISvfMetadata</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L178">svf/reader.ts:178</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves parsed SVF metadata.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.isvfmetadata.html" class="tsd-signature-type">ISvfMetadata</a><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>SVF metadata.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="getpropertydb" class="tsd-anchor"></a>
					<h3>get<wbr>Property<wbr>Db</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">get<wbr>Property<wbr>Db<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="_svf_propdb_reader_.propdbreader.html" class="tsd-signature-type">PropDbReader</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L340">svf/reader.ts:340</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves and parses the property database.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="_svf_propdb_reader_.propdbreader.html" class="tsd-signature-type">PropDbReader</a><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Property database reader.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="listimages" class="tsd-anchor"></a>
					<h3>list<wbr>Images</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">list<wbr>Images<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L329">svf/reader.ts:329</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Finds URIs of all image assets referenced in the SVF.
									These can then be retrieved using <a href="_svf_reader_.reader.html#getasset">getAsset</a>.</p>
								</div>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4>
							<p>Image asset URIs.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="read" class="tsd-anchor"></a>
					<h3>read</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">read<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_reader_.isvfcontent.html" class="tsd-signature-type">ISvfContent</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L112">svf/reader.ts:112</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Reads the entire SVF and all its referenced assets into memory.
										In cases where a more granular control is needed (for example, when trying to control
										memory consumption), consider parsing the different SVF elements individually,
									using methods like {@link listFragments}, <a href="_svf_reader_.reader.html#enumerategeometries">enumerateGeometries</a>, etc.</p>
								</div>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_reader_.isvfcontent.html" class="tsd-signature-type">ISvfContent</a><span class="tsd-signature-symbol">&gt;</span></h4>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="readfragments" class="tsd-anchor"></a>
					<h3>read<wbr>Fragments</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">read<wbr>Fragments<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.ifragment.html" class="tsd-signature-type">IFragment</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L204">svf/reader.ts:204</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and collects all SVF fragments.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.ifragment.html" class="tsd-signature-type">IFragment</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>List of parsed fragments.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="readgeometries" class="tsd-anchor"></a>
					<h3>read<wbr>Geometries</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">read<wbr>Geometries<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.igeometrymetadata.html" class="tsd-signature-type">IGeometryMetadata</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L236">svf/reader.ts:236</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and collects all SVF geometry metadata.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/_svf_schema_.igeometrymetadata.html" class="tsd-signature-type">IGeometryMetadata</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>List of parsed geometry metadata.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="readmaterials" class="tsd-anchor"></a>
					<h3>read<wbr>Materials</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">read<wbr>Materials<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.imaterial.html" class="tsd-signature-type">IMaterial</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L315">svf/reader.ts:315</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and collects all SVF materials.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.imaterial.html" class="tsd-signature-type">IMaterial</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>List of parsed materials (or null values for unsupported material types).</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
					<a name="readmeshpack" class="tsd-anchor"></a>
					<h3>read<wbr>Mesh<wbr>Pack</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
						<li class="tsd-signature tsd-kind-icon">read<wbr>Mesh<wbr>Pack<span class="tsd-signature-symbol">(</span>packNumber<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.imesh.html" class="tsd-signature-type">IMesh</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ilines.html" class="tsd-signature-type">ILines</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ipoints.html" class="tsd-signature-type">IPoints</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L283">svf/reader.ts:283</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Retrieves, parses, and collects all meshes, lines, or points in a specific SVF meshpack.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>packNumber: <span class="tsd-signature-type">number</span></h5>
									<div class="tsd-comment tsd-typography">
										<p>Index of mesh pack file.</p>
									</div>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.imesh.html" class="tsd-signature-type">IMesh</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ilines.html" class="tsd-signature-type">ILines</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/_svf_schema_.ipoints.html" class="tsd-signature-type">IPoints</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>List of parsed meshes,
							lines, or points (or null values for unsupported mesh types).</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static">
					<a name="fromderivativeservice" class="tsd-anchor"></a>
					<h3><span class="tsd-flag ts-flagStatic">Static</span> From<wbr>Derivative<wbr>Service</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static">
						<li class="tsd-signature tsd-kind-icon">From<wbr>Derivative<wbr>Service<span class="tsd-signature-symbol">(</span>urn<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, guid<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, auth<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">IAuthOptions</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="_svf_reader_.reader.html" class="tsd-signature-type">Reader</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L76">svf/reader.ts:76</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Instantiates new reader for an SVF in Forge Model Derivative service.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>urn: <span class="tsd-signature-type">string</span></h5>
									<div class="tsd-comment tsd-typography">
										<p>Forge model URN.</p>
									</div>
								</li>
								<li>
									<h5>guid: <span class="tsd-signature-type">string</span></h5>
									<div class="tsd-comment tsd-typography">
										<p>Forge viewable GUID. The viewable(s) can be found in the manifest
										with type: &#39;resource&#39;, role: &#39;graphics&#39;, and mime: &#39;application/autodesk-svf&#39;.</p>
									</div>
								</li>
								<li>
									<h5>auth: <span class="tsd-signature-type">IAuthOptions</span></h5>
									<div class="tsd-comment tsd-typography">
										<p>Credentials or access token for accessing the Model Derivative service.</p>
									</div>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="_svf_reader_.reader.html" class="tsd-signature-type">Reader</a><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Reader for the provided SVF.</p>
						</li>
					</ul>
				</section>
				<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static">
					<a name="fromfilesystem" class="tsd-anchor"></a>
					<h3><span class="tsd-flag ts-flagStatic">Static</span> From<wbr>File<wbr>System</h3>
					<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static">
						<li class="tsd-signature tsd-kind-icon">From<wbr>File<wbr>System<span class="tsd-signature-symbol">(</span>filepath<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="_svf_reader_.reader.html" class="tsd-signature-type">Reader</a><span class="tsd-signature-symbol">&gt;</span></li>
					</ul>
					<ul class="tsd-descriptions">
						<li class="tsd-description">
							<aside class="tsd-sources">
								<ul>
									<li>Defined in <a href="https://github.com/petrbroz/forge-svf-utils/blob/678f05e/src/svf/reader.ts#L57">svf/reader.ts:57</a></li>
								</ul>
							</aside>
							<div class="tsd-comment tsd-typography">
								<div class="lead">
									<p>Instantiates new reader for an SVF on local file system.</p>
								</div>
								<dl class="tsd-comment-tags">
									<dt>async</dt>
									<dd></dd>
								</dl>
							</div>
							<h4 class="tsd-parameters-title">Parameters</h4>
							<ul class="tsd-parameters">
								<li>
									<h5>filepath: <span class="tsd-signature-type">string</span></h5>
									<div class="tsd-comment tsd-typography">
										<p>Path to the *.svf file.</p>
									</div>
								</li>
							</ul>
							<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="_svf_reader_.reader.html" class="tsd-signature-type">Reader</a><span class="tsd-signature-symbol">&gt;</span></h4>
							<p>Reader for the provided SVF.</p>
						</li>
					</ul>
				</section>
			</section>
		</div>
		<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
			<nav class="tsd-navigation primary">
				<ul>
					<li class="globals  ">
						<a href="../globals.html"><em>Globals</em></a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_gltf_writer_.html">"gltf/writer"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_index_.html">"index"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_fragments_.html">"svf/fragments"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_geometries_.html">"svf/geometries"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_input_stream_.html">"svf/input-<wbr>stream"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_materials_.html">"svf/materials"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_meshes_.html">"svf/meshes"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_packfile_reader_.html">"svf/packfile-<wbr>reader"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_propdb_reader_.html">"svf/propdb-<wbr>reader"</a>
					</li>
					<li class="current tsd-kind-external-module">
						<a href="../modules/_svf_reader_.html">"svf/reader"</a>
					</li>
					<li class=" tsd-kind-external-module">
						<a href="../modules/_svf_schema_.html">"svf/schema"</a>
					</li>
				</ul>
			</nav>
			<nav class="tsd-navigation secondary menu-sticky">
				<ul class="before-current">
				</ul>
				<ul class="current">
					<li class="current tsd-kind-class tsd-parent-kind-external-module">
						<a href="_svf_reader_.reader.html" class="tsd-kind-icon">Reader</a>
						<ul>
							<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-protected">
								<a href="_svf_reader_.reader.html#constructor" class="tsd-kind-icon">constructor</a>
							</li>
							<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-protected">
								<a href="_svf_reader_.reader.html#resolve" class="tsd-kind-icon">resolve</a>
							</li>
							<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-protected">
								<a href="_svf_reader_.reader.html#svf" class="tsd-kind-icon">svf</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#enumeratefragments" class="tsd-kind-icon">enumerate<wbr>Fragments</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#enumerategeometries" class="tsd-kind-icon">enumerate<wbr>Geometries</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#enumeratematerials" class="tsd-kind-icon">enumerate<wbr>Materials</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#enumeratemeshpack" class="tsd-kind-icon">enumerate<wbr>Mesh<wbr>Pack</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-protected">
								<a href="_svf_reader_.reader.html#findasset" class="tsd-kind-icon">find<wbr>Asset</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#getasset" class="tsd-kind-icon">get<wbr>Asset</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#getmeshpackcount" class="tsd-kind-icon">get<wbr>Mesh<wbr>Pack<wbr>Count</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#getmetadata" class="tsd-kind-icon">get<wbr>Metadata</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#getpropertydb" class="tsd-kind-icon">get<wbr>Property<wbr>Db</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#listimages" class="tsd-kind-icon">list<wbr>Images</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#read" class="tsd-kind-icon">read</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#readfragments" class="tsd-kind-icon">read<wbr>Fragments</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#readgeometries" class="tsd-kind-icon">read<wbr>Geometries</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#readmaterials" class="tsd-kind-icon">read<wbr>Materials</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class">
								<a href="_svf_reader_.reader.html#readmeshpack" class="tsd-kind-icon">read<wbr>Mesh<wbr>Pack</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static">
								<a href="_svf_reader_.reader.html#fromderivativeservice" class="tsd-kind-icon">From<wbr>Derivative<wbr>Service</a>
							</li>
							<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static">
								<a href="_svf_reader_.reader.html#fromfilesystem" class="tsd-kind-icon">From<wbr>File<wbr>System</a>
							</li>
						</ul>
					</li>
				</ul>
				<ul class="after-current">
					<li class=" tsd-kind-interface tsd-parent-kind-external-module">
						<a href="../interfaces/_svf_reader_.isvfcontent.html" class="tsd-kind-icon">ISvf<wbr>Content</a>
					</li>
				</ul>
			</nav>
		</div>
	</div>
</div>
<footer class="with-border-bottom">
	<div class="container">
		<h2>Legend</h2>
		<div class="tsd-legend-group">
			<ul class="tsd-legend">
				<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
				<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
				<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
				<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
				<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
				<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
				<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
				<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
				<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
				<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
				<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
				<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
				<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
				<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
				<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
				<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
				<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
				<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
				<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
				<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
				<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
				<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
				<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
				<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
				<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
				<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
				<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
				<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
				<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
			</ul>
			<ul class="tsd-legend">
				<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
				<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
			</ul>
		</div>
	</div>
</footer>
<div class="container tsd-generator">
	<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html>