Last updated

API / geotoolkit3d / selection / from

Module: from

Table of contents

Functions

Contents

Functions

from

from(node): QueryBuilder<any>

Query all nodes from the specified node and do the specified action

Example

import {from} from '@int/geotoolkit3d/selection/from';
from(node)
.where((node) => node.getId() === 'line')
.selectFirst();

Parameters

Name Type Description
nodeObject3Dnode to start search

Returns

QueryBuilder<any>

a new node query builder