Davide Prati
Davide Prati
Hello Zach, the structure of this repository is not compatible with the current OF version. I have re-arranged it so that students can simply clone it into /apps.
Hello, I have the following error compiling the pbr example on mac (10.11.6, El Capitan). ``` Compiling wgpu_rust_renderer v0.0.3 (/Users/da1/Sources/rust/wgpu-rust-renderer) Finished dev [unoptimized + debuginfo] target(s) in 1m 48s Running...
dig into this https://erkaman.github.io/posts/ray_trace_inverse_ray.html
The error in the console says: “MidiOutCore::sendMessage: message format problem ... not sysex but > 3 bytes?”
I have this error on linux, ```cpp addons/ofxVezer/src/Parser.cpp:241: error: control reaches end of non-void function [-Werror=return-type] } ``` The function: ```cpp bool Composition::combine(const Composition & other, bool priority){ if (...
Hi, I have the following error when running the example It looks like `comps` is empty ```cpp vector comps = ofxVezer::ParserCereal::load("test.xml", "test.bin"); comp = comps[0]; // comps is empty ```...
Hello @satcy , thanks for your addon. I have updated the example using the same folder structure expected by the project generator, I have added some instructions to which version...
When using in OF 0.9.7 this code ```cpp ofMatrix4x4 normalMatrix = ofMatrix4x4::getTransposedOf(cam->getModelViewMatrix().getInverse()); ``` Should be converted to the new GLM syntax ```cpp glm::mat4 mvMatrix = cam.getModelViewMatrix(); auto normalMatrix = glm::transpose(glm::inverse(mvMatrix));...
It would be nice if there would be a possibility to add rendering on demand through a callback. Is there a way to make a custom render method, where the...
Hey, thanks for this library, it works like a charm. I am using it to export my sketches to svg. Is there a way to ust p5.js-svg headless?