(List<Pair<Double, Integer>> points)
| 648 | DoubleList bounds; |
| 649 | |
| 650 | public VPLeaf(List<Pair<Double, Integer>> points) |
| 651 | { |
| 652 | this.points = new IntList(points.size()); |
| 653 | this.bounds = new DoubleList(points.size()); |
| 654 | for(int i = 0; i < points.size(); i++) |
| 655 | { |
| 656 | this.points.add(points.get(i).getSecondItem()); |
| 657 | this.bounds.add(points.get(i).getFirstItem()); |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | public VPLeaf(VPLeaf toCopy) |
| 662 | { |
nothing calls this directly
no test coverage detected