johnbcarpenter
johnbcarpenter
not sure if this is still an active issue, but I was hoping to use attrib() with POINTS earlier today... had a point cloud with temporal information and I wanted...
``` ch_data.beginShape(POINTS); ch_data.strokeWeight(3.5); for (int i = 0; i < ch_locs.length; i++) { PVector loc = ch_locs[i].copy(); ch_data.stroke(node_Hs[i], node_Ss[i], node_Bs[i], ch_time[i]); //passing time in as alpha ch_data.vertex(loc.x, loc.y, loc.z); }...
just running through some of the V2 examples and noticed this bug in the example still, here's what i changed my setup to -- exactly the same as the above...
no fixes, but i also ran into this last night... processing 3.0.1 and osX 10.11
thank you @brendanmatkin ... this solution works for me on os x 10.11 + processing 3: > Workaround: If I download the zip of this project from github, and copy...
@shiffman ... Kinect CinderBlock is 3 years out of date... not sure it's being maintained any more or is still a helpful reference. i spent some time trying to get...