Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+28
View File
@@ -0,0 +1,28 @@
import { Matrix3, Mesh } from 'three'
import { Volume } from './Volume'
export class VolumeSlice {
constructor(volume: Volume, index?: number, axis?: string)
index: number
axis: string
canvas: HTMLCanvasElement
canvasBuffer: HTMLCanvasElement
ctx: CanvasRenderingContext2D
ctxBuffer: CanvasRenderingContext2D
mesh: Mesh
geometryNeedsUpdate: boolean
sliceAccess: number
jLength: number
iLength: number
matrix: Matrix3
repaint(): void
updateGeometry(): void
}