Those return values are native Java arrays.

user> (def x (int-array '(1 2 3)))
#'user/x
user> x
#<int[] [I@12554d5>

You can convert them to Clojure vectors using (vec):

user> (vec x)
[1 2 3]

Regards,
Stuart

On 21 December 2011 11:59, Antonio Recio <amdx6...@gmail.com> wrote:

> When I try to get the position of two variables I get a bizzare code, but
> not the vector. How I can get the vector in the form of position iren [0 0
> 0]?
>
> user=> (.GetEventPosition iren)
> #<int[] [I@62114b17>
>
> user=> (.GetPickPosition picker)
> #<double[] [D@1aef4504>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to