Skip to main content

AngleMeasurement

๐Ÿ“ Dimensions Toolโ€‹


At times, you may need to compute the dimensions of an object or measure the distance between two elements. Elements must be precisely aligned when working on complex models. Dimension Tool allows you to perform measurements effortlessly.

First, let's set up a simple scene!

๐Ÿ‘€ If you haven't started there, check out that tutorial first!

This tutorial will show you how to add Dimension Tool to your projects, which can be used to acquire accurate dimensions for any 3D Object.๐Ÿ”ญ

๐ŸŽฒ Creating a Cube Meshโ€‹


For this tutorial we will use a Cube, you can add any geometry as per your preference. We will create a Cube with 3x3x3 dimensions and use red color for the material.

const cubeGeometry = new THREE.BoxGeometry(3, 3, 3);
const cubeMaterial = new THREE.MeshStandardMaterial({ color: '#6528D7' });
const cube = new THREE.Mesh(cubeGeometry, cubeMaterial);
cube.position.set(0, 1.5, 0);

Now, we will add the Cube to the Scene. We must also add the cube to components.meshes, which is simply an array of all the meshes in the Scene.๐Ÿ—„๏ธ

scene.add(cube);
components.meshes.add(cube);
Collection of Meshes

๐Ÿ“ฆ Components.meshes keeps all your meshes including IFC Models, Fragments in one place.

๐Ÿ› ๏ธ Creating Dimension Toolโ€‹


A lot of logic is usually needed to compute dimensions for any item, beginning with ray casting, finding the vertices to snap to, and rendering the UI for every line element.๐Ÿ™„ This may appear to be a lot of effort, but we are handling all the heavy lifting for you, and you only need to write a few lines for creating the Dimension Tool.๐Ÿ’ช

const dimensions = new OBC.AngleMeasurement(components);

We will build dimensions by supplying the components to OBC.SimpleDimensions.

DIMENSIONS AND UI

Read the Simple Dimensions API for more on this. The Simple Dimensions API provides you with a compact UI as well to display the measurements.

๐ŸŽจ SimpleDimensions has several properties that help you to customize the behaviour of the Line Element. One such property which you can use is dimensions.color which modifies the color of the Line Element. Now, let's enable dimensions and tell them to be snapped at a distance of one unit. snapDistance helps in attaching the tooltip temporarily at regular intervals, making it easier to interact with items.๐Ÿ“

dimensions.enabled = true;
dimensions.snapDistance = 1;

๐Ÿ–ฑ๏ธ Managing Eventsโ€‹


You can use the Dimension Tool to construct several dimension lines. Let's see how you handle them.

โœ๏ธ Creating the Dimensionsโ€‹

Now that we've generated the dimensions object, we need to attach the line tooltip to a vertex of the 3D object. We'll use the double click event to invoke dimensions.create(). When this event occurs, a line element is generated, and the distance is calculated in real-time inside the label associated with that line.๐Ÿท๏ธ

container.ondblclick = () => dimensions.create();

๐Ÿงน Deleting the Dimensionsโ€‹

Now that we know how to make multiple dimension lines, we must also know how to delete them when necessary. Dimensions can be removed using dimensions.delete(). dimensions.delete() deletes the dimension on which your mouse pointer is now located.

Deleting all the Dimensions

โŽ If you want to safely delete all the dimensions that were created you can simply call dimensions.deleteAll()

window.onkeydown = (event) => {
if (event.code === 'Delete' || event.code === 'Backspace') {
dimensions.delete();
}
};

โ๏ธ Creating a Toolbar for the Dimensionsโ€‹


We'll make a Toolbar Component and set it at the bottom. In addition, we will have a button that allows you to toggle the dimension tool.

const mainToolbar = new OBC.Toolbar(components, { name: 'Main Toolbar', position: 'bottom' });
mainToolbar.addChild(dimensions.uiElement.get('main'));
components.ui.addToolbar(mainToolbar);

๐ŸŽ›๏ธ Check Toolbar and UIManager tutorial if you have any doubts!

๐Ÿ–Œ๏ธ Adding Stylesโ€‹


Few final things, we need to add styles for the labels which display the measurement information.

  • ifcjs-dimension-label - The label which is used to show the metric value after both the tooltips are attached.
  • ifcjs-dimension-label:hover - Changing the styling when someone hovers on the dimension label.
  • ifcjs-dimension-preview - The label which shows the measurement when the tooltip is not yet attached.
style
.ifcjs-dimension-label {
background-color: black;
font-family: sans-serif;
color: white;
padding: 8px;
border-radius: 8px;
pointer-events: all;
transition: background-color 200ms ease-in-out;
}
.ifcjs-dimension-label:hover {
background-color: grey;
}
.ifcjs-dimension-preview {
background-color: #ffffff;
width: 2rem;
height: 2rem;
opacity: 0.3;
padding: 8px;
border-radius: 100%;
}

Congratulations ๐ŸŽ‰ on completing this tutorial! Now you can measure any BIM Model or any 3D Object easily using Simple Dimension Component ๐Ÿ“ Let's keep it up and check out another tutorial! ๐ŸŽ“