A 3D (thr) model to pixel transformation with motion effect
npm install @d3p1/thr2pxl


An efficient model-to-pixel transformation with motion effects, leveraging WebGL's hardware acceleration and GPGPU through Three.js:
!Demo
> [!TIP]
> If you would like to implement a similar effect on a 2D image, you can use the related library d3p1/img2pxl.
You can install this library using a package manager like npm:
``javascript`
npm install @d3p1/thr2pxl
Or you can use a CDN like jsDelivr and this importmap in the
of your html file:`html
...
...
``html
...
...
`> [!NOTE]
> Remember to replace the
with the actual version of thr2pxl and its peer dependencies (three - tweakpane - react - react-dom). To do that, you can check the package.json of the last release and get required versions from there.Usage
Using this library is straightforward:
1. Go to our builder page and make the desired customizations in the tweak panel to achieve the desired effect.
2. Use the
Copy button to obtain the configuration that produces the desired effect.3. Instantiate the library with the configuration copied in the previous step, for example:
`javascript
// Vanilla
import {Thr2Pxl} from '@d3p1/thr2pxl/core'
...
const config = {
models: {
0: {
src: {
highPoly: ,
lowPoly:
},
width: ,
height: ,
point: {
size: 5,
motion: {
frequency: 0.1,
strength: 1.5,
ratio: 0.25,
lifeDecay: 0.2
}
}
},
},
pointer: {
strength: 0.2,
minRad: 1,
maxRad: 2,
pulseStrength: 0.2,
pulseFrequency: 1
}
}
new Thr2Pxl(config)
``javascript
// React
import {Thr2Pxl} from '@d3p1/thr2pxl/react'
...
const config = {
models: {
0: {
src: {
highPoly: ,
lowPoly:
},
width: ,
height: ,
point: {
size: 5,
motion: {
frequency: 0.1,
strength: 1.5,
ratio: 0.25,
lifeDecay: 0.2
}
}
},
},
pointer: {
strength: 0.2,
minRad: 1,
maxRad: 2,
pulseStrength: 0.2,
pulseFrequency: 1
}
}
return
`> [!NOTE]
> To gain a deeper understanding of how to use this library and how it works under the hood, visit the wiki page _(in progress)_.
Changelog
CHANGELOG.md`.This work is published under MIT License.
Always happy to receive a greeting on: