Karl Hiner
Karl Hiner
I'd love to see this get in! Here it is with _very_ minor style change, just to keep the ball rolling. ``` class Markov def initialize(source, order=1, start=nil) @source =...
I am running into a very similar issue. Here is my setup: ``` ``` If I update the coordinates of the vertices held in `this.pointVertices`, no update happens on the...
I used the following workaround for my vertex-updating issue: On each render, I call... ``` this.refs.points.geometry.applyMatrix(this.refs.points.matrixWorld) ``` ...before checking for intersections with ``` this.raycaster.intersectObject(this.refs.points) ```
I am seeing the same thing - `limit` not an attribute on `Points` and `position` not an attribute on `Point`. Versions: TS: 4.5.3 Three: 0.136.0 Fiber: 7.0.24 Drei: 8.3.1
Are there any suggested workarounds for this? (Specifically ones using `find`, and not `createQueryBuilder`?) I can provide a full repro, but it sounds like the issue is well understood. Basically,...
I ran into the same issue, thinking the `assets` folder was meant to be used. I found out the app expects data in the format provided in the provided [dataset](https://graphics.stanford.edu/projects/kleinpat/kleinpat-dataset/dataset_table.html)....
I made a fork that fixes some build issues and adds a full run example: https://github.com/khiner/openpbso
FWIW, I have exactly this kind of toggle-able vu-meter option for each graph node in my application, and I "solved" this problem by just inserting/removing the vu-meter sub-node from the...
> I noticed in that comment you linked to that I even suggested the exact same set up as @santiky mentioned in the original post. I'll need to replicate this...