(TCB3 into, List<Vec3> a)
| 223 | } |
| 224 | |
| 225 | static public TCB3 refreshContents(TCB3 into, List<Vec3> a) { |
| 226 | |
| 227 | if (into.n.size() != a.size()) |
| 228 | throw new IllegalArgumentException(into.n.size() + " != " + a.size()); |
| 229 | int index = 0; |
| 230 | for (Vec3 vv : a) { |
| 231 | Node n = into.n.get(index++); |
| 232 | n.setV(vv); |
| 233 | } |
| 234 | return into; |
| 235 | } |
| 236 | |
| 237 | public TCB3 copy() { |
| 238 |
no test coverage detected