Initializerheckj.voxels 0.2.6Voxels
init(edge:value:)
VoxelArray.swift:8init(edge: Int, value: T)
init(edge: Int, value: T)
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.
@frozen struct Int
A signed integer value type.
init(bounds: VoxelBounds, initialValue: T)
let bounds: VoxelBounds
subscript(index: VoxelIndex) -> T? { get set }
mutating func set(_ vi: VoxelIndex, newValue: T)
func value(_ vi: VoxelIndex) -> T?