A bit array where each bit represents an atom. The atom index in the bit array matches the atom index in the atom store of its structure When more components/structures are taking part in collision detection, the atom indexes in the bit array are offset by the number of atoms of all previous components
Example: Component A has 10 atoms Component B has 30 atoms Component C has 20 atoms _collisions.get(5) -> 6th atom of Component A _collisions.get(12) -> 3rd atom of Component B _collisions.get(40) -> 1st atom of Component C
See this.updateComponent to understand how discrepancies between CPU atoms and GPU atoms can occur.
The error (inaccuracy/discrepancy measure)
WARNING: This function has not been tested thoroughly. The text below describes the intended behavior This function is not used currently. To recalculate atom positions, simply Stop collision detection and Start again
See this.updateComponent to understand how discrepancies between CPU atoms and GPU atoms can occur. This method recalculates the atom positions of the given component and uploads those to the GPU so that they again match.
Renders the collision box and each collision as a marker
Performs the first iteration of the collision detection It is recommended calling this method before performing any updates. Something may break otherwise
Download collision data from the GPU and compare with current collision data on the CPU If there are any changes (per component), dispatch a collisionChanged signal (per component)
When a component's matrix is uptated (see this.updateComponent), we do not reupload all atom position to the GPU, instead we upload the new matrix to the GPU and retransform the atoms belonging to this component. This process, however, leads to imprecision in the collision detection, where the GPU atom positions being used for detection do not match the GPU atom positions perfectly.
To recalculate atom positions, simply Stop collision detection and Start again
Initializes a CatanaCollision instance based on the given components
The components that will take part in collision detection
The viewer where the collision will be visualized
The radius value of the collision rendering (negative values have special meaning... see WgRendCollisionShader > WgRendCollisionShaderRadiusMode)
The mode of the collision rendering markers (like X or O; see WgRendCollisionShader > WgRendCollisionShaderMode)
The color of the rendered markers
The opacity of the rendered markers
How lenient the collision detection should be (also may have an effect in the rendering)
The thickness of the rendered markers
Initializes a CatanaCollision instanced based on the given Stage All StructureComponents and CgStructureComponents in the stage will take part in collision detection See CatanaCollision.fromComponents for a more detailed description of all parameters
Generated using TypeDoc
Manages the communication between Catana's back/frontend and the WebGPU classes This achieves a nice isolation of the WebGPU code, so very few components of Catana have to be aware of its inner workings. This class is one of these few components