-
I have finished implementing the catmull rom. However, sometimes when I run either the hand or robot arm simulation, it spazzes out at random points. Was wondering if anyone else experienced this?
-
See https://github.com/d3/d3-scale-chromatic/issues/28
-
In the lecture slides, the tangents are defined to be computed as:
Where on the wikipedia page linked form the assignment says:
I just noticed that the subscripts in the second terms differ fr…
-
It seems like the time we will pass to the Catmull-Rom-Interpolation is exact the seconds in the software, which will easily pass the limitation within the maximum keyframe time we implemented.
I'm…
-
Should our animation look as smooth as the one in the README's gif? Mine gets to all the poses but it looks a bit more jumpy (as if there are frames missing compared to the README version)
Also, #2…
-
Not sure exactly sure in which circumstances it will be used, but probably good practice.
-
For our catmull rom interpolation, I've found two methods that work for computing tangents. One from the slides:
and one from wikipedia:
which of these should we use?
-
Problem: Cytoscape uses center of node as start and end points, while PathVisio uses a point on the perimeter of the node. This means the curves don't match when you import a WikiPathways network as p…
-
I didn't find if it is C2 continuous in the documentation. Or if it can achieve higher order of continuity?
-
Hi,
In the catmull_rom_interpolation() code, it mentions how we need to interpolate the theta positions of a given ```t```; however, when I ran it, sometimes the parameter ```t``` goes beyond the …