<br><br><div><span class="gmail_quote">On 10/03/2008, <b class="gmail_sendername">Mickael POUCHOL</b> <<a href="mailto:mickael.pouchol@xlim.fr">mickael.pouchol@xlim.fr</a>> 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'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> typedef float value_type;<br> <br> inline value_type operator[](size_t const N) const { return<br>
ptr->position[N]; }<br> // The position if of type vec2f<br> 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'm not sure if you can do it with the current KD-Tree. I have some pending changes to commit to the tree that opens up the templates a bit more and makes it possible.<br>
</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't not understand how to define such a kd-tree with the lib.</blockquote><div><br>I don't know how you would do this either<br><br><br>see ya<br>Paul<br><br></div></div>