Constructors
Properties
raycaster
raycaster: Raycaster
Methods
isInsideMesh
- isInsideMesh(pos, mesh, dir?): boolean
Parameters
- pos: Vector3
- mesh: Mesh<BufferGeometry<NormalBufferAttributes>, Material | Material[], Object3DEventMap>
- dir: Vector3 = ...
Returns boolean
voxelizeMesh
- voxelizeMesh(mesh, gridSize, dir?, boundingBoxFunc?): {
position: Vector3;
}[] Parameters
- mesh: Mesh<BufferGeometry<NormalBufferAttributes>, Material | Material[], Object3DEventMap>
- gridSize: number
- dir: Vector3 = ...
Optional
boundingBoxFunc: ((boundingBox: Box3) => void)- (boundingBox): void
Returns void
Returns {
position: Vector3;
}[]
voxelizeModel
- voxelizeModel(scene, gridSize, modelSize, dir?, boundingBoxFunc?): Voxel[]
Parameters
- scene: Group<Object3DEventMap>
- gridSize: number
- modelSize: number
- dir: Vector3 = ...
Optional
boundingBoxFunc: ((boundingBox: Box3) => void)- (boundingBox): void
Returns void
A utility class to voxelize meshes or models. Ref: https://tympanus.net/codrops/2023/03/28/turning-3d-models-to-voxel-art-with-three-js/