Skip to content

Geometry.boundsMin

Summary

Geometry.boundsMin reads the current boundsMin value from this Geometry instance. Use it to inspect runtime state without mutating resources.

Syntax

Geometry.boundsMin: readonly [number, number, number]
const value = geometry.boundsMin;

Parameters

This API does not take parameters.

Returns

readonly [number, number, number] - Current accessor value exposed by the runtime object.

Type Details

// No additional descriptor expansion is required for this signature.

Example

const canvas = document.querySelector("canvas");
const wgpu = await WasmGPU.create(canvas);

const geometry = wgpu.geometry.sphere(1, 24, 16);
const value = geometry.boundsMin;
console.log(value);

See Also