Initial import of NODEDC BIM Viewer
This commit is contained in:
@@ -0,0 +1,184 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<base data-ice="baseUrl" href="../../../">
|
||||
<title data-ice="title">src/toolbar/ResetAction.js | xeokit-bim-viewer</title>
|
||||
<link type="text/css" rel="stylesheet" href="css/style.css">
|
||||
<link type="text/css" rel="stylesheet" href="css/prettify-tomorrow.css">
|
||||
<script src="script/prettify/prettify.js"></script>
|
||||
<script src="script/manual.js"></script>
|
||||
<meta name="description" content="BIM viewer built on xeokit"><meta property="og:type" content="website"><meta property="og:url" content="https://github.com/xeokit/xeokit-bim-viewer"><meta property="og:site_name" content="xeokit-bim-viewer"><meta property="og:title" content="xeokit-bim-viewer"><meta property="og:image" content="./images/logo.jpg"><meta property="og:description" content="BIM viewer built on xeokit"><meta property="og:author" content="http://xeolabs.com"><meta property="twitter:card" content="summary"><meta property="twitter:title" content="xeokit-bim-viewer"><meta property="twitter:description" content="BIM viewer built on xeokit"><meta property="twitter:image" content="./images/logo.jpg"></head>
|
||||
<body class="layout-container" data-ice="rootContainer">
|
||||
|
||||
<header>
|
||||
<a href="./" style="display: flex; align-items: center;"><img src="./image/brand_logo.jpg" style="width:34px;"></a>
|
||||
|
||||
<a href="identifiers.html">Reference</a>
|
||||
<a href="source.html">Source</a>
|
||||
|
||||
<div class="search-box">
|
||||
<span>
|
||||
<img src="./image/search.png">
|
||||
<span class="search-input-edge"></span><input class="search-input"><span class="search-input-edge"></span>
|
||||
</span>
|
||||
<ul class="search-result"></ul>
|
||||
</div>
|
||||
<a style="position:relative; top:3px;" href="https://github.com/xeokit/xeokit-bim-viewer"><img width="20px" src="./image/github.png"></a></header>
|
||||
|
||||
<nav class="navigation" data-ice="nav"><div>
|
||||
<ul>
|
||||
|
||||
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/BIMViewer.js~BIMViewer.html">BIMViewer</a></span></span></li>
|
||||
<li data-ice="doc"><a data-ice="dirPath" class="nav-dir-path" href="identifiers.html#collision">collision</a><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/collision/ObjectsKdTree3.js~ObjectsKdTree3.html">ObjectsKdTree3</a></span></span></li>
|
||||
<li data-ice="doc"><a data-ice="dirPath" class="nav-dir-path" href="identifiers.html#server">server</a><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/server/Server.js~Server.html">Server</a></span></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="content" data-ice="content"><h1 data-ice="title">src/toolbar/ResetAction.js</h1>
|
||||
<pre class="source-code line-number raw-source-code"><code class="prettyprint linenums" data-ice="content">import {Controller} from "../Controller.js";
|
||||
import {ModelMemento, math} from "@xeokit/xeokit-sdk/dist/xeokit-sdk.es.js";
|
||||
|
||||
const tempVec3a = math.vec3();
|
||||
|
||||
/** @private */
|
||||
class ResetAction extends Controller {
|
||||
|
||||
constructor(parent, cfg = {}) {
|
||||
|
||||
super(parent, cfg);
|
||||
|
||||
if (!cfg.buttonElement) {
|
||||
throw "Missing config: buttonElement";
|
||||
}
|
||||
|
||||
const buttonElement = cfg.buttonElement;
|
||||
const camera = this.viewer.camera;
|
||||
|
||||
this._modelMementos = {};
|
||||
|
||||
// Initial camera position - looking down negative diagonal
|
||||
|
||||
camera.eye = [0.577, 0.577, 0.577];
|
||||
camera.look = [0,0,0];
|
||||
camera.up = [-1, 1, -1];
|
||||
|
||||
this.bimViewer._modelsExplorer.on("modelLoaded", (modelId) => {
|
||||
this._saveModelMemento(modelId);
|
||||
});
|
||||
|
||||
this.bimViewer._modelsExplorer.on("modelUnloaded", (modelId) => {
|
||||
this._destroyModelMemento(modelId);
|
||||
});
|
||||
|
||||
this.on("enabled", (enabled) => {
|
||||
if (!enabled) {
|
||||
buttonElement.classList.add("disabled");
|
||||
} else {
|
||||
buttonElement.classList.remove("disabled");
|
||||
}
|
||||
});
|
||||
|
||||
this.on("active", (active) => {
|
||||
if (active) {
|
||||
buttonElement.classList.add("active");
|
||||
} else {
|
||||
buttonElement.classList.remove("active");
|
||||
}
|
||||
});
|
||||
|
||||
buttonElement.addEventListener("click", (event) => {
|
||||
if (this.getEnabled()) {
|
||||
this.reset();
|
||||
}
|
||||
event.preventDefault();
|
||||
});
|
||||
}
|
||||
|
||||
_saveModelMemento(modelId) {
|
||||
const metaModel = this.viewer.metaScene.metaModels[modelId];
|
||||
if (!metaModel) {
|
||||
return;
|
||||
}
|
||||
const modelMemento = new ModelMemento();
|
||||
modelMemento.saveObjects(this.viewer.scene, metaModel, {
|
||||
visible: true,
|
||||
edges: true,
|
||||
xrayed: true,
|
||||
highlighted: true,
|
||||
selected: true,
|
||||
clippable: true,
|
||||
pickable: true,
|
||||
colorize: false, // We don't colorize objects yet - also messes up point clouds
|
||||
opacity: false // FIXME: Restoring opacity broken by colorize fix - details at https://github.com/xeokit/xeokit-sdk/issues/239
|
||||
});
|
||||
this._modelMementos[modelId] = modelMemento;
|
||||
}
|
||||
|
||||
_restoreModelMemento(modelId) {
|
||||
const metaModel = this.viewer.metaScene.metaModels[modelId];
|
||||
if (!metaModel) {
|
||||
return;
|
||||
}
|
||||
const modelMemento = this._modelMementos[modelId];
|
||||
modelMemento.restoreObjects(this.viewer.scene, metaModel);
|
||||
}
|
||||
|
||||
_destroyModelMemento(modelId) {
|
||||
delete this._modelMementos[modelId];
|
||||
}
|
||||
|
||||
reset() {
|
||||
const scene = this.viewer.scene;
|
||||
const modelIds = scene.modelIds;
|
||||
for (var i = 0, len = modelIds.length; i < len; i++) {
|
||||
const modelId = modelIds[i];
|
||||
this._restoreModelMemento(modelId);
|
||||
}
|
||||
this.bimViewer.unShowObjectInExplorers();
|
||||
this.fire("reset", true);
|
||||
this._resetCamera();
|
||||
}
|
||||
|
||||
_resetCamera() {
|
||||
const viewer = this.viewer;
|
||||
const scene = viewer.scene;
|
||||
const aabb = scene.getAABB(scene.visibleObjectIds);
|
||||
const diag = math.getAABB3Diag(aabb);
|
||||
const center = math.getAABB3Center(aabb, tempVec3a);
|
||||
const camera = scene.camera;
|
||||
const fitFOV = camera.perspective.fov;
|
||||
const dist = Math.abs(diag / Math.tan(45 * math.DEGTORAD));
|
||||
const dir = math.normalizeVec3((camera.yUp) ? [-0.5, -0.7071, -0.5] : [-1, 1, -1]);
|
||||
const up = math.normalizeVec3((camera.yUp) ? [-0.5, 0.7071, -0.5] : [-1, 1, 1]);
|
||||
viewer.cameraControl.pivotPos = center;
|
||||
viewer.cameraControl.planView = false;
|
||||
viewer.cameraFlight.flyTo({
|
||||
look: center,
|
||||
eye: [center[0] - (dist * dir[0]), center[1] - (dist * dir[1]), center[2] - (dist * dir[2])],
|
||||
up: up,
|
||||
orthoScale: diag * 1.3,
|
||||
projection: "perspective",
|
||||
duration: 1
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export {ResetAction};</code></pre>
|
||||
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
Generated by <a href="https://esdoc.org">ESDoc<span data-ice="esdocVersion">(1.1.0)</span><img src="./image/esdoc-logo-mini-black.png"></a>
|
||||
</footer>
|
||||
|
||||
<script src="script/search_index.js"></script>
|
||||
<script src="script/search.js"></script>
|
||||
<script src="script/pretty-print.js"></script>
|
||||
<script src="script/inherited-summary.js"></script>
|
||||
<script src="script/test-summary.js"></script>
|
||||
<script src="script/inner-link.js"></script>
|
||||
<script src="script/patch-for-local.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user