(double a, Vec3 out)
| 196 | } |
| 197 | |
| 198 | public Vec3 evaluate(double a, Vec3 out) { |
| 199 | Triple<Node, Node, Double> q = this.bracket(a); |
| 200 | |
| 201 | if (q == null) { |
| 202 | System.out.println(" could not bracket <" + a + "> inside <" + this.n + ">"); |
| 203 | return null; |
| 204 | } |
| 205 | |
| 206 | return evaluateFrame(q.first, q.second, q.third.doubleValue(), out); |
| 207 | } |
| 208 | |
| 209 | static public TCB3 fromPoints(List<Vec3> a, float t, float c, float b) { |
| 210 | TCB3 tcb = new TCB3(); |
no test coverage detected