Marcin Ignac

Results 174 issues of Marcin Ignac

Eg https://github.com/vorg/pex-examples/tree/master/src/materials.All.spaceTransformations has `materials` and `shaders` folder that are not copied to `dist/` on build src ``` materials.All.spaceTransformations ├── main.js ├── materials └── shaders ``` dist ``` materials.All.spaceTransformations ├── main.min.js...

There is test script for plask https://github.com/vorg/pex-examples/blob/master/test/runall.js It opens all the examples in plask one by one and tries to look for exceptions on stdout. This way I can easily...

The app tries to load cloth_30_45_l.obj which is not in the repo. I've tried using cloth_20_30_l.obj provided but it appears broken. ![Screenshot 2023-07-14 at 13 27 37](https://github.com/ccincotti3/webgpu_cloth_simulator/assets/171001/aeecc1a9-4fc4-47dd-9ab9-3ae6b6671490)

Source tutorial for Godot was MIT https://github.com/samuelbigos/godot_2d_global_illumination is it safe to assume same here?

Currently we depend on pex-sys/Window.addEventListener or manually calling gui.onMouseMove callbacks. It would be good to move to shared library between `pex-sys`,`pex-gui` and `pex-cam`. Requirements: - works with mouse and touch...

When we modify the value from outside of GUI we should redraw (only if gui is visible)

type/feat

I can't click correctly if e.g. body has padding

type/fix

Things seem to twist with up vectors in X direction ![Screenshot 2024-02-05 at 11 46 31](https://github.com/pex-gl/pex-math/assets/171001/8511d482-f98e-4ec7-b9fe-a6c1650f6074)

type/fix
type/test

Similar to `quat.fromDirection(tangent, normal)` but would allow us to skip the cross product if given binormal `quat.fromOrthonormalBasis(tangent, normal, binormal)`... or was it `bitangent`...

type/feat

When creating modelMatrix from rotation in pex-renderer i'm missing the following function ```js var tempMat4multQuatMat4 = mat4.create(); function mat4multQuat(m, q) { mat4.fromQuat(tempMat4multQuatMat4, q); mat4.mult(m, tempMat4multQuatMat4); return m; } ``` Do...

type/feat