This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>xeokit Example</title> | |
<link href="../css/pageStyle.css" rel="stylesheet"/> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {math} from "../../viewer/scene/math/math.js"; | |
import {utils} from "../../viewer/scene/utils.js"; | |
import {core} from "../../viewer/scene/core.js"; | |
import {sRGBEncoding} from "../../viewer/scene/constants/constants.js"; | |
import {worldToRTCPositions} from "../../viewer/scene/math/rtcCoords.js"; | |
import {parse} from '@loaders.gl/core'; | |
import {GLTFLoader} from '@loaders.gl/gltf/dist/esm/gltf-loader.js'; | |
import { | |
ClampToEdgeWrapping, | |
LinearFilter, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {utils} from "../XKTModel/lib/utils.js"; | |
import {math} from "../lib/math.js"; | |
import {parse} from '@loaders.gl/core'; | |
import {GLTFLoader} from '@loaders.gl/gltf'; | |
import { | |
ClampToEdgeWrapping, | |
LinearFilter, | |
LinearMipMapLinearFilter, | |
LinearMipMapNearestFilter, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {utils} from "../XKTModel/lib/utils.js"; | |
import {math} from "../lib/math.js"; | |
import {parse} from '@loaders.gl/core'; | |
import {GLTFLoader} from '@loaders.gl/gltf'; | |
import { | |
ClampToEdgeWrapping, | |
LinearFilter, | |
LinearMipMapLinearFilter, | |
LinearMipMapNearestFilter, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Component} from "../../viewer/scene/Component.js"; | |
import {math} from "../../viewer/scene/math/math.js"; | |
import {PointerCircle} from "../../extras/PointerCircle/PointerCircle.js"; | |
import {DistanceMeasurementsControl} from "./DistanceMeasurementsControl.js"; | |
const WAITING_FOR_FIRST_TOUCH = 0; | |
const WAITING_FOR_SECOND_TOUCH = 1; | |
const LONG_TOUCH_FINDING_ORIGIN = 2; | |
const TOUCH_FINDING_TARGET = 3; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {PropertySet} from "./PropertySet.js"; | |
import {MetaObject} from "./MetaObject.js"; | |
import {math} from "../scene/math/math.js"; | |
/** | |
* @desc Metadata corresponding to an {@link Entity} that represents a model. | |
* | |
* An {@link Entity} represents a model when {@link Entity#isModel} is ````true```` | |
* | |
* A MetaModel corresponds to an {@link Entity} by having the same {@link MetaModel#id} as the {@link Entity#id}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
@@include('../_includes/head.html') | |
<title></title></head> | |
<body data-spy="scroll" data-target=".navbar" data-offset="50"> | |
@@include('../_includes/navigationTests.html') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {utils} from "../../viewer/scene/utils.js" | |
import {SceneModel} from "../../viewer/scene/model/index.js"; | |
import {MetaModel} from "../../viewer/metadata/MetaModel.js"; | |
import {Plugin} from "../../viewer/Plugin.js"; | |
import {XKTDefaultDataSource} from "./XKTDefaultDataSource.js"; | |
import {IFCObjectDefaults} from "../../viewer/metadata/IFCObjectDefaults.js"; | |
import {ParserV1} from "./parsers/ParserV1.js"; | |
import {ParserV2} from "./parsers/ParserV2.js"; | |
import {ParserV3} from "./parsers/ParserV3.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {FrameContext} from './FrameContext.js'; | |
import {math} from '../math/math.js'; | |
import {stats} from '../stats.js'; | |
import {WEBGL_INFO} from '../webglInfo.js'; | |
import {Map} from "../utils/Map.js"; | |
import {PickResult} from "./PickResult.js"; | |
import {OcclusionTester} from "./occlusion/OcclusionTester.js"; | |
import {SAOOcclusionRenderer} from "./sao/SAOOcclusionRenderer.js"; | |
import {createRTCViewMat} from "../math/rtcCoords.js"; | |
import {SAODepthLimitedBlurRenderer} from "./sao/SAODepthLimitedBlurRenderer.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>xeokit Example</title> | |
<link href="../css/pageStyle.css" rel="stylesheet"/> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"></script> | |
</head> |
NewerOlder