<div dir="ltr">Use <a href="https://github.com/rustyio/sync">https://github.com/rustyio/sync</a> so you don't have to manually recompile your code<br><br><br>Sergej<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Fri, Feb 7, 2014 at 8:27 AM, Vlad Dumitrescu <span dir="ltr"><<a href="mailto:vladdu55@gmail.com" target="_blank">vladdu55@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<div class="im"><br>
On Fri, Feb 7, 2014 at 8:25 AM, kraythe . <<a href="mailto:kraythe@gmail.com">kraythe@gmail.com</a>> wrote:<br>
> coordinateGreaterThan(V, {X, Y, Z}) when X > V; Y > V; Z > V -> true;<br>
> coordinateGreaterThan(_, _) -> false.<br>
><br>
> %% Culls the list of vectors X to only those that are in the sphere devined<br>
> by vector C as a center and R as a radius.<br>
> cull(C, R, Vectors) when is_number(R), is_tuple(C) -> cull(C, R, Vectors,<br>
> []).<br>
> cull(C, R, Culled, []) -> Culled;<br>
> cull(C, R, Culled, [Head|Tail]) -><br>
>   D = subtract(C, Head),<br>
>   case coordinateIsGreaterThan(R, Head) of<br>
>     true -> cull(C, R, Culled, Tail);<br>
><br>
</div><div class="im">> 1) Why is it saying my coordinateIsGreaterThan/2 method is undefined when I<br>
> can see it here and then to say it is unused in the next line? That seems<br>
> contradictory?<br>
<br>
</div>Look carefully and see that you define "coordinateGreaterThan" and<br>
call "coordinateIsGreaterThan".<br>
<br>
regards,<br>
Vlad<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div><br></div>