Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/threejs_4_deno/src/core/Raycaster.d.ts>Raycaster#intersectObjects

A simple transformation of three.js for use within a Deno workflow
Go to Latest
method Raycaster.prototype.intersectObjects
import { Raycaster } from "https://deno.land/x/threejs_4_deno@v121/src/core/Raycaster.d.ts";

Checks all intersection between the ray and the objects with or without the descendants. Intersections are returned sorted by distance, closest first. Intersections are of the same form as those returned by .intersectObject.

Parameters

objects: Object3D[]

The objects to check for intersection with the ray.

optional
recursive: boolean

If true, it also checks all descendants of the objects. Otherwise it only checks intersecton with the objects. Default is false.

optional
optionalTarget: Intersection[]

(optional) target to set the result. Otherwise a new Array is instantiated. If set, you must clear this array prior to each call (i.e., array.length = 0;).