Fills in a list of all the leafs touched.
(float[] mins, float[] maxs, int[] list, int listsize, int[] topnode)
| 1004 | |
| 1005 | /** Fills in a list of all the leafs touched. */ |
| 1006 | public int CM_BoxLeafnums(float[] mins, float[] maxs, int[] list, int listsize, int[] topnode) { |
| 1007 | return CM_BoxLeafnums_headnode(mins, maxs, list, listsize, |
| 1008 | map_cmodels[0].headnode, topnode); |
| 1009 | } |
| 1010 | |
| 1011 | /** Returns a tag that describes the content of the point. */ |
| 1012 | public int PointContents(float[] p, int headnode) { |
no test coverage detected