Instance Propertyheckj.voxels 0.2.6Voxels
bounds
VoxelArray.swift:6let bounds: VoxelBounds
let bounds: VoxelBounds
import Voxels
A Swift library for storage, manipulation, export, and 3D rendering of Voxel data.
struct VoxelArray<T> where T : Sendable
A collection of voxels backed by an array.
struct VoxelBounds
The coordinate bounds of a set of voxels.
init(bounds: VoxelBounds, initialValue: T)
init(edge: Int, value: T)
subscript(index: VoxelIndex) -> T? { get set }
mutating func set(_ vi: VoxelIndex, newValue: T)
func value(_ vi: VoxelIndex) -> T?