Searches the leaf number that contains the 3d point.
(float[] p)
| 933 | |
| 934 | /** Searches the leaf number that contains the 3d point. */ |
| 935 | public int CM_PointLeafnum(float[] p) { |
| 936 | // sound may call this without map loaded |
| 937 | if (numplanes == 0) |
| 938 | return 0; |
| 939 | return CM_PointLeafnum_r(p, 0); |
| 940 | } |
| 941 | |
| 942 | |
| 943 | private int leaf_count; |
no test coverage detected