@react-three-dom/core 0.5.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/index.cjs +3 -4047
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +149 -2
- package/dist/index.d.ts +149 -2
- package/dist/index.js +3 -3987
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Object3D, Scene, Camera, WebGLRenderer, Intersection, Vector3 } from 'three';
|
|
2
2
|
|
|
3
|
-
declare const version = "0.
|
|
3
|
+
declare const version = "0.6.0";
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Enable or disable debug logging globally.
|
|
@@ -239,6 +239,97 @@ interface R3FDOM {
|
|
|
239
239
|
eventCount: number;
|
|
240
240
|
pointCount: number;
|
|
241
241
|
}>;
|
|
242
|
+
/** Click at an arbitrary world coordinate (projects to screen, dispatches click) */
|
|
243
|
+
clickAtWorld(point: {
|
|
244
|
+
x: number;
|
|
245
|
+
y: number;
|
|
246
|
+
z: number;
|
|
247
|
+
}, options?: {
|
|
248
|
+
shiftKey?: boolean;
|
|
249
|
+
ctrlKey?: boolean;
|
|
250
|
+
altKey?: boolean;
|
|
251
|
+
metaKey?: boolean;
|
|
252
|
+
}): {
|
|
253
|
+
dispatched: boolean;
|
|
254
|
+
screenPoint: {
|
|
255
|
+
x: number;
|
|
256
|
+
y: number;
|
|
257
|
+
};
|
|
258
|
+
behindCamera: boolean;
|
|
259
|
+
};
|
|
260
|
+
/** Double-click at an arbitrary world coordinate */
|
|
261
|
+
doubleClickAtWorld(point: {
|
|
262
|
+
x: number;
|
|
263
|
+
y: number;
|
|
264
|
+
z: number;
|
|
265
|
+
}, options?: {
|
|
266
|
+
shiftKey?: boolean;
|
|
267
|
+
ctrlKey?: boolean;
|
|
268
|
+
altKey?: boolean;
|
|
269
|
+
metaKey?: boolean;
|
|
270
|
+
}): {
|
|
271
|
+
dispatched: boolean;
|
|
272
|
+
screenPoint: {
|
|
273
|
+
x: number;
|
|
274
|
+
y: number;
|
|
275
|
+
};
|
|
276
|
+
behindCamera: boolean;
|
|
277
|
+
};
|
|
278
|
+
/** Right-click (context menu) at an arbitrary world coordinate */
|
|
279
|
+
contextMenuAtWorld(point: {
|
|
280
|
+
x: number;
|
|
281
|
+
y: number;
|
|
282
|
+
z: number;
|
|
283
|
+
}, options?: {
|
|
284
|
+
shiftKey?: boolean;
|
|
285
|
+
ctrlKey?: boolean;
|
|
286
|
+
altKey?: boolean;
|
|
287
|
+
metaKey?: boolean;
|
|
288
|
+
}): {
|
|
289
|
+
dispatched: boolean;
|
|
290
|
+
screenPoint: {
|
|
291
|
+
x: number;
|
|
292
|
+
y: number;
|
|
293
|
+
};
|
|
294
|
+
behindCamera: boolean;
|
|
295
|
+
};
|
|
296
|
+
/** Hover at an arbitrary world coordinate */
|
|
297
|
+
hoverAtWorld(point: {
|
|
298
|
+
x: number;
|
|
299
|
+
y: number;
|
|
300
|
+
z: number;
|
|
301
|
+
}, options?: {
|
|
302
|
+
shiftKey?: boolean;
|
|
303
|
+
ctrlKey?: boolean;
|
|
304
|
+
altKey?: boolean;
|
|
305
|
+
metaKey?: boolean;
|
|
306
|
+
}): {
|
|
307
|
+
dispatched: boolean;
|
|
308
|
+
screenPoint: {
|
|
309
|
+
x: number;
|
|
310
|
+
y: number;
|
|
311
|
+
};
|
|
312
|
+
behindCamera: boolean;
|
|
313
|
+
};
|
|
314
|
+
/** Click a sequence of world coordinates with delay between each (for drawing tools) */
|
|
315
|
+
clickAtWorldSequence(points: Array<{
|
|
316
|
+
x: number;
|
|
317
|
+
y: number;
|
|
318
|
+
z: number;
|
|
319
|
+
}>, options?: {
|
|
320
|
+
delayMs?: number;
|
|
321
|
+
shiftKey?: boolean;
|
|
322
|
+
ctrlKey?: boolean;
|
|
323
|
+
altKey?: boolean;
|
|
324
|
+
metaKey?: boolean;
|
|
325
|
+
}): Promise<Array<{
|
|
326
|
+
dispatched: boolean;
|
|
327
|
+
screenPoint: {
|
|
328
|
+
x: number;
|
|
329
|
+
y: number;
|
|
330
|
+
};
|
|
331
|
+
behindCamera: boolean;
|
|
332
|
+
}>>;
|
|
242
333
|
/** Select an object (shows highlight wireframe in scene) */
|
|
243
334
|
select(idOrUuid: string): void;
|
|
244
335
|
/** Clear selection */
|
|
@@ -1777,6 +1868,62 @@ declare function circlePath(center: {
|
|
|
1777
1868
|
y: number;
|
|
1778
1869
|
}, radiusX: number, radiusY?: number, steps?: number, pressure?: number): DrawPoint[];
|
|
1779
1870
|
|
|
1871
|
+
/** A 3D world-space coordinate. */
|
|
1872
|
+
interface WorldPoint {
|
|
1873
|
+
x: number;
|
|
1874
|
+
y: number;
|
|
1875
|
+
z: number;
|
|
1876
|
+
}
|
|
1877
|
+
/** Options shared by all world-coordinate interactions. */
|
|
1878
|
+
interface WorldInteractionOptions {
|
|
1879
|
+
/** Modifier keys to include on the synthetic events. */
|
|
1880
|
+
shiftKey?: boolean;
|
|
1881
|
+
ctrlKey?: boolean;
|
|
1882
|
+
altKey?: boolean;
|
|
1883
|
+
metaKey?: boolean;
|
|
1884
|
+
}
|
|
1885
|
+
/** Result returned by world-coordinate interactions. */
|
|
1886
|
+
interface WorldInteractionResult {
|
|
1887
|
+
dispatched: boolean;
|
|
1888
|
+
screenPoint: ScreenPoint;
|
|
1889
|
+
behindCamera: boolean;
|
|
1890
|
+
}
|
|
1891
|
+
/**
|
|
1892
|
+
* Click at an arbitrary world coordinate.
|
|
1893
|
+
*
|
|
1894
|
+
* Projects the point to screen space and dispatches a full click sequence
|
|
1895
|
+
* (pointerdown → pointerup → click) on the canvas. R3F's event system will
|
|
1896
|
+
* raycast from that screen position and fire onClick on whatever mesh is hit.
|
|
1897
|
+
*
|
|
1898
|
+
* @returns Result with the screen point used and whether the point was behind the camera.
|
|
1899
|
+
*/
|
|
1900
|
+
declare function clickAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1901
|
+
/**
|
|
1902
|
+
* Double-click at an arbitrary world coordinate.
|
|
1903
|
+
*/
|
|
1904
|
+
declare function doubleClickAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1905
|
+
/**
|
|
1906
|
+
* Right-click (context menu) at an arbitrary world coordinate.
|
|
1907
|
+
*/
|
|
1908
|
+
declare function contextMenuAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1909
|
+
/**
|
|
1910
|
+
* Hover at an arbitrary world coordinate.
|
|
1911
|
+
*
|
|
1912
|
+
* Dispatches pointermove → pointerover → pointerenter at the projected
|
|
1913
|
+
* screen position. R3F will raycast and fire onPointerEnter/onPointerOver
|
|
1914
|
+
* on whatever mesh is at that position.
|
|
1915
|
+
*/
|
|
1916
|
+
declare function hoverAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1917
|
+
/**
|
|
1918
|
+
* Click a sequence of world coordinates with optional delay between each.
|
|
1919
|
+
* Useful for BIM drawing tools (polyline, measurement, etc.).
|
|
1920
|
+
*
|
|
1921
|
+
* @returns Array of results, one per point.
|
|
1922
|
+
*/
|
|
1923
|
+
declare function clickAtWorldSequence(points: WorldPoint[], options?: {
|
|
1924
|
+
delayMs?: number;
|
|
1925
|
+
} & WorldInteractionOptions): Promise<WorldInteractionResult[]>;
|
|
1926
|
+
|
|
1780
1927
|
/**
|
|
1781
1928
|
* @module resolve
|
|
1782
1929
|
*
|
|
@@ -1824,4 +1971,4 @@ declare function resolveObject(idOrUuid: string): Object3D;
|
|
|
1824
1971
|
*/
|
|
1825
1972
|
declare function useR3FRegister(ref: React.RefObject<Object3D | null>, canvasId?: string): void;
|
|
1826
1973
|
|
|
1827
|
-
export { type CameraState, type CanvasSize, type Click3DOptions, type Click3DResult, DomMirror, type Drag3DOptions, type Drag3DResult, type DragOptions, type DrawPathOptions, type DrawPathResult, type DrawPoint, type GeometryInspection, Highlighter, type HighlighterOptions, type Hover3DOptions, type Hover3DResult, InspectController, type InspectOptions, MANAGED_ATTRIBUTES, type MaterialInspection, type ObjectInspection, type ObjectMetadata, ObjectStore, type PointerMiss3DOptions, type ProjectionResult, type R3FDOM, RaycastAccelerator, type RaycastResult, type SceneSnapshot, type ScreenDelta, type ScreenPoint, type SelectionListener, SelectionManager, type SnapshotNode, type StoreEvent, type StoreEventType, type StoreListener, TAG_MAP, ThreeDom, type ThreeDomProps, ThreeElement, type ThreeTagName, type Wheel3DOptions, type Wheel3DResult, type WheelOptions, type WorldDelta, applyAttributes, circlePath, click3D, computeAttributes, contextMenu3D, createFlatSnapshot, createSnapshot, curvePath, dispatchClick, dispatchContextMenu, dispatchDoubleClick, dispatchDrag, dispatchHover, dispatchPointerMiss, dispatchUnhover, dispatchWheel, doubleClick3D, drag3D, drawPath, enableDebug, ensureCustomElements, getCanvasIds, getHighlighter, getInspectController, getMirror, getSelectionManager, getStore, getTagForType, hover3D, isDebugEnabled, isInFrustum, isPatched, linePath, patchObject3D, pointerMiss3D, previewDragWorldDelta, projectAllSamplePoints, projectToScreen, r3fLog, rectPath, resolveObject, restoreObject3D, screenDeltaToWorld, unhover3D, useR3FRegister, verifyRaycastHit, verifyRaycastHitMultiPoint, version, wheel3D };
|
|
1974
|
+
export { type CameraState, type CanvasSize, type Click3DOptions, type Click3DResult, DomMirror, type Drag3DOptions, type Drag3DResult, type DragOptions, type DrawPathOptions, type DrawPathResult, type DrawPoint, type GeometryInspection, Highlighter, type HighlighterOptions, type Hover3DOptions, type Hover3DResult, InspectController, type InspectOptions, MANAGED_ATTRIBUTES, type MaterialInspection, type ObjectInspection, type ObjectMetadata, ObjectStore, type PointerMiss3DOptions, type ProjectionResult, type R3FDOM, RaycastAccelerator, type RaycastResult, type SceneSnapshot, type ScreenDelta, type ScreenPoint, type SelectionListener, SelectionManager, type SnapshotNode, type StoreEvent, type StoreEventType, type StoreListener, TAG_MAP, ThreeDom, type ThreeDomProps, ThreeElement, type ThreeTagName, type Wheel3DOptions, type Wheel3DResult, type WheelOptions, type WorldDelta, type WorldInteractionOptions, type WorldInteractionResult, type WorldPoint, applyAttributes, circlePath, click3D, clickAtWorld, clickAtWorldSequence, computeAttributes, contextMenu3D, contextMenuAtWorld, createFlatSnapshot, createSnapshot, curvePath, dispatchClick, dispatchContextMenu, dispatchDoubleClick, dispatchDrag, dispatchHover, dispatchPointerMiss, dispatchUnhover, dispatchWheel, doubleClick3D, doubleClickAtWorld, drag3D, drawPath, enableDebug, ensureCustomElements, getCanvasIds, getHighlighter, getInspectController, getMirror, getSelectionManager, getStore, getTagForType, hover3D, hoverAtWorld, isDebugEnabled, isInFrustum, isPatched, linePath, patchObject3D, pointerMiss3D, previewDragWorldDelta, projectAllSamplePoints, projectToScreen, r3fLog, rectPath, resolveObject, restoreObject3D, screenDeltaToWorld, unhover3D, useR3FRegister, verifyRaycastHit, verifyRaycastHitMultiPoint, version, wheel3D };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Object3D, Scene, Camera, WebGLRenderer, Intersection, Vector3 } from 'three';
|
|
2
2
|
|
|
3
|
-
declare const version = "0.
|
|
3
|
+
declare const version = "0.6.0";
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Enable or disable debug logging globally.
|
|
@@ -239,6 +239,97 @@ interface R3FDOM {
|
|
|
239
239
|
eventCount: number;
|
|
240
240
|
pointCount: number;
|
|
241
241
|
}>;
|
|
242
|
+
/** Click at an arbitrary world coordinate (projects to screen, dispatches click) */
|
|
243
|
+
clickAtWorld(point: {
|
|
244
|
+
x: number;
|
|
245
|
+
y: number;
|
|
246
|
+
z: number;
|
|
247
|
+
}, options?: {
|
|
248
|
+
shiftKey?: boolean;
|
|
249
|
+
ctrlKey?: boolean;
|
|
250
|
+
altKey?: boolean;
|
|
251
|
+
metaKey?: boolean;
|
|
252
|
+
}): {
|
|
253
|
+
dispatched: boolean;
|
|
254
|
+
screenPoint: {
|
|
255
|
+
x: number;
|
|
256
|
+
y: number;
|
|
257
|
+
};
|
|
258
|
+
behindCamera: boolean;
|
|
259
|
+
};
|
|
260
|
+
/** Double-click at an arbitrary world coordinate */
|
|
261
|
+
doubleClickAtWorld(point: {
|
|
262
|
+
x: number;
|
|
263
|
+
y: number;
|
|
264
|
+
z: number;
|
|
265
|
+
}, options?: {
|
|
266
|
+
shiftKey?: boolean;
|
|
267
|
+
ctrlKey?: boolean;
|
|
268
|
+
altKey?: boolean;
|
|
269
|
+
metaKey?: boolean;
|
|
270
|
+
}): {
|
|
271
|
+
dispatched: boolean;
|
|
272
|
+
screenPoint: {
|
|
273
|
+
x: number;
|
|
274
|
+
y: number;
|
|
275
|
+
};
|
|
276
|
+
behindCamera: boolean;
|
|
277
|
+
};
|
|
278
|
+
/** Right-click (context menu) at an arbitrary world coordinate */
|
|
279
|
+
contextMenuAtWorld(point: {
|
|
280
|
+
x: number;
|
|
281
|
+
y: number;
|
|
282
|
+
z: number;
|
|
283
|
+
}, options?: {
|
|
284
|
+
shiftKey?: boolean;
|
|
285
|
+
ctrlKey?: boolean;
|
|
286
|
+
altKey?: boolean;
|
|
287
|
+
metaKey?: boolean;
|
|
288
|
+
}): {
|
|
289
|
+
dispatched: boolean;
|
|
290
|
+
screenPoint: {
|
|
291
|
+
x: number;
|
|
292
|
+
y: number;
|
|
293
|
+
};
|
|
294
|
+
behindCamera: boolean;
|
|
295
|
+
};
|
|
296
|
+
/** Hover at an arbitrary world coordinate */
|
|
297
|
+
hoverAtWorld(point: {
|
|
298
|
+
x: number;
|
|
299
|
+
y: number;
|
|
300
|
+
z: number;
|
|
301
|
+
}, options?: {
|
|
302
|
+
shiftKey?: boolean;
|
|
303
|
+
ctrlKey?: boolean;
|
|
304
|
+
altKey?: boolean;
|
|
305
|
+
metaKey?: boolean;
|
|
306
|
+
}): {
|
|
307
|
+
dispatched: boolean;
|
|
308
|
+
screenPoint: {
|
|
309
|
+
x: number;
|
|
310
|
+
y: number;
|
|
311
|
+
};
|
|
312
|
+
behindCamera: boolean;
|
|
313
|
+
};
|
|
314
|
+
/** Click a sequence of world coordinates with delay between each (for drawing tools) */
|
|
315
|
+
clickAtWorldSequence(points: Array<{
|
|
316
|
+
x: number;
|
|
317
|
+
y: number;
|
|
318
|
+
z: number;
|
|
319
|
+
}>, options?: {
|
|
320
|
+
delayMs?: number;
|
|
321
|
+
shiftKey?: boolean;
|
|
322
|
+
ctrlKey?: boolean;
|
|
323
|
+
altKey?: boolean;
|
|
324
|
+
metaKey?: boolean;
|
|
325
|
+
}): Promise<Array<{
|
|
326
|
+
dispatched: boolean;
|
|
327
|
+
screenPoint: {
|
|
328
|
+
x: number;
|
|
329
|
+
y: number;
|
|
330
|
+
};
|
|
331
|
+
behindCamera: boolean;
|
|
332
|
+
}>>;
|
|
242
333
|
/** Select an object (shows highlight wireframe in scene) */
|
|
243
334
|
select(idOrUuid: string): void;
|
|
244
335
|
/** Clear selection */
|
|
@@ -1777,6 +1868,62 @@ declare function circlePath(center: {
|
|
|
1777
1868
|
y: number;
|
|
1778
1869
|
}, radiusX: number, radiusY?: number, steps?: number, pressure?: number): DrawPoint[];
|
|
1779
1870
|
|
|
1871
|
+
/** A 3D world-space coordinate. */
|
|
1872
|
+
interface WorldPoint {
|
|
1873
|
+
x: number;
|
|
1874
|
+
y: number;
|
|
1875
|
+
z: number;
|
|
1876
|
+
}
|
|
1877
|
+
/** Options shared by all world-coordinate interactions. */
|
|
1878
|
+
interface WorldInteractionOptions {
|
|
1879
|
+
/** Modifier keys to include on the synthetic events. */
|
|
1880
|
+
shiftKey?: boolean;
|
|
1881
|
+
ctrlKey?: boolean;
|
|
1882
|
+
altKey?: boolean;
|
|
1883
|
+
metaKey?: boolean;
|
|
1884
|
+
}
|
|
1885
|
+
/** Result returned by world-coordinate interactions. */
|
|
1886
|
+
interface WorldInteractionResult {
|
|
1887
|
+
dispatched: boolean;
|
|
1888
|
+
screenPoint: ScreenPoint;
|
|
1889
|
+
behindCamera: boolean;
|
|
1890
|
+
}
|
|
1891
|
+
/**
|
|
1892
|
+
* Click at an arbitrary world coordinate.
|
|
1893
|
+
*
|
|
1894
|
+
* Projects the point to screen space and dispatches a full click sequence
|
|
1895
|
+
* (pointerdown → pointerup → click) on the canvas. R3F's event system will
|
|
1896
|
+
* raycast from that screen position and fire onClick on whatever mesh is hit.
|
|
1897
|
+
*
|
|
1898
|
+
* @returns Result with the screen point used and whether the point was behind the camera.
|
|
1899
|
+
*/
|
|
1900
|
+
declare function clickAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1901
|
+
/**
|
|
1902
|
+
* Double-click at an arbitrary world coordinate.
|
|
1903
|
+
*/
|
|
1904
|
+
declare function doubleClickAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1905
|
+
/**
|
|
1906
|
+
* Right-click (context menu) at an arbitrary world coordinate.
|
|
1907
|
+
*/
|
|
1908
|
+
declare function contextMenuAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1909
|
+
/**
|
|
1910
|
+
* Hover at an arbitrary world coordinate.
|
|
1911
|
+
*
|
|
1912
|
+
* Dispatches pointermove → pointerover → pointerenter at the projected
|
|
1913
|
+
* screen position. R3F will raycast and fire onPointerEnter/onPointerOver
|
|
1914
|
+
* on whatever mesh is at that position.
|
|
1915
|
+
*/
|
|
1916
|
+
declare function hoverAtWorld(point: WorldPoint, _options?: WorldInteractionOptions): WorldInteractionResult;
|
|
1917
|
+
/**
|
|
1918
|
+
* Click a sequence of world coordinates with optional delay between each.
|
|
1919
|
+
* Useful for BIM drawing tools (polyline, measurement, etc.).
|
|
1920
|
+
*
|
|
1921
|
+
* @returns Array of results, one per point.
|
|
1922
|
+
*/
|
|
1923
|
+
declare function clickAtWorldSequence(points: WorldPoint[], options?: {
|
|
1924
|
+
delayMs?: number;
|
|
1925
|
+
} & WorldInteractionOptions): Promise<WorldInteractionResult[]>;
|
|
1926
|
+
|
|
1780
1927
|
/**
|
|
1781
1928
|
* @module resolve
|
|
1782
1929
|
*
|
|
@@ -1824,4 +1971,4 @@ declare function resolveObject(idOrUuid: string): Object3D;
|
|
|
1824
1971
|
*/
|
|
1825
1972
|
declare function useR3FRegister(ref: React.RefObject<Object3D | null>, canvasId?: string): void;
|
|
1826
1973
|
|
|
1827
|
-
export { type CameraState, type CanvasSize, type Click3DOptions, type Click3DResult, DomMirror, type Drag3DOptions, type Drag3DResult, type DragOptions, type DrawPathOptions, type DrawPathResult, type DrawPoint, type GeometryInspection, Highlighter, type HighlighterOptions, type Hover3DOptions, type Hover3DResult, InspectController, type InspectOptions, MANAGED_ATTRIBUTES, type MaterialInspection, type ObjectInspection, type ObjectMetadata, ObjectStore, type PointerMiss3DOptions, type ProjectionResult, type R3FDOM, RaycastAccelerator, type RaycastResult, type SceneSnapshot, type ScreenDelta, type ScreenPoint, type SelectionListener, SelectionManager, type SnapshotNode, type StoreEvent, type StoreEventType, type StoreListener, TAG_MAP, ThreeDom, type ThreeDomProps, ThreeElement, type ThreeTagName, type Wheel3DOptions, type Wheel3DResult, type WheelOptions, type WorldDelta, applyAttributes, circlePath, click3D, computeAttributes, contextMenu3D, createFlatSnapshot, createSnapshot, curvePath, dispatchClick, dispatchContextMenu, dispatchDoubleClick, dispatchDrag, dispatchHover, dispatchPointerMiss, dispatchUnhover, dispatchWheel, doubleClick3D, drag3D, drawPath, enableDebug, ensureCustomElements, getCanvasIds, getHighlighter, getInspectController, getMirror, getSelectionManager, getStore, getTagForType, hover3D, isDebugEnabled, isInFrustum, isPatched, linePath, patchObject3D, pointerMiss3D, previewDragWorldDelta, projectAllSamplePoints, projectToScreen, r3fLog, rectPath, resolveObject, restoreObject3D, screenDeltaToWorld, unhover3D, useR3FRegister, verifyRaycastHit, verifyRaycastHitMultiPoint, version, wheel3D };
|
|
1974
|
+
export { type CameraState, type CanvasSize, type Click3DOptions, type Click3DResult, DomMirror, type Drag3DOptions, type Drag3DResult, type DragOptions, type DrawPathOptions, type DrawPathResult, type DrawPoint, type GeometryInspection, Highlighter, type HighlighterOptions, type Hover3DOptions, type Hover3DResult, InspectController, type InspectOptions, MANAGED_ATTRIBUTES, type MaterialInspection, type ObjectInspection, type ObjectMetadata, ObjectStore, type PointerMiss3DOptions, type ProjectionResult, type R3FDOM, RaycastAccelerator, type RaycastResult, type SceneSnapshot, type ScreenDelta, type ScreenPoint, type SelectionListener, SelectionManager, type SnapshotNode, type StoreEvent, type StoreEventType, type StoreListener, TAG_MAP, ThreeDom, type ThreeDomProps, ThreeElement, type ThreeTagName, type Wheel3DOptions, type Wheel3DResult, type WheelOptions, type WorldDelta, type WorldInteractionOptions, type WorldInteractionResult, type WorldPoint, applyAttributes, circlePath, click3D, clickAtWorld, clickAtWorldSequence, computeAttributes, contextMenu3D, contextMenuAtWorld, createFlatSnapshot, createSnapshot, curvePath, dispatchClick, dispatchContextMenu, dispatchDoubleClick, dispatchDrag, dispatchHover, dispatchPointerMiss, dispatchUnhover, dispatchWheel, doubleClick3D, doubleClickAtWorld, drag3D, drawPath, enableDebug, ensureCustomElements, getCanvasIds, getHighlighter, getInspectController, getMirror, getSelectionManager, getStore, getTagForType, hover3D, hoverAtWorld, isDebugEnabled, isInFrustum, isPatched, linePath, patchObject3D, pointerMiss3D, previewDragWorldDelta, projectAllSamplePoints, projectToScreen, r3fLog, rectPath, resolveObject, restoreObject3D, screenDeltaToWorld, unhover3D, useR3FRegister, verifyRaycastHit, verifyRaycastHitMultiPoint, version, wheel3D };
|