<br><br><div><span class="gmail_quote">On 10/03/2008, <b class="gmail_sendername">Mickael POUCHOL</b> &lt;<a href="mailto:mickael.pouchol@xlim.fr">mickael.pouchol@xlim.fr</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br> <br> I&#39;m using libkdtree++ for 2D SPH simulation for nearest neighbour<br> search. The structure stored in the kd-tree is :<br> <br> <br> struct ParticlePtr {<br>&nbsp;&nbsp;typedef float value_type;<br> <br>&nbsp;&nbsp;inline value_type operator[](size_t const N) const { return<br>
 ptr-&gt;position[N]; }<br>&nbsp;&nbsp;// The position if of type vec2f<br>&nbsp;&nbsp;Particle *ptr;<br> };<br> <br> For each particle in the simulation, I use the tree to get its<br> neighbours with a call to : t.find_within_range(current_particle, RANGE,<br>
 std::back_inserter(v));<br> Sometimes I would like to query the tree with a vec2f value and not with<br> a ParticlePtr. Is there a way to do that?</blockquote><div><br><br>I&#39;m not sure if you can do it with the current KD-Tree.&nbsp; I have some pending changes to commit to the tree that opens up the templates a bit more and makes it possible.<br>
&nbsp;</div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> Secondly I would like to use another kd-tree to store segments (or<br> triangles in 3D) and query it with a ray in the collision detection<br>
 phase. I didn&#39;t not understand how to define such a kd-tree with the lib.</blockquote><div><br>I don&#39;t know how you would do this either<br><br><br>see ya<br>Paul<br><br></div></div>