On Sat, Dec 1, 2012 at 11:58 AM, Christian Sperandio <
christian.speran...@gmail.com> wrote:

> When I try to use the following constructor 
> *Scene<http://docs.oracle.com/javafx/2/api/javafx/scene/Scene.html#Scene(javafx.scene.Parent,%20double,%20double,%20javafx.scene.paint.Paint)>
> *(Parent <http://docs.oracle.com/javafx/2/api/javafx/scene/Parent.html> root,
> double width, double height, 
> Paint<http://docs.oracle.com/javafx/2/api/javafx/scene/paint/Paint.html>
>  fill)
> ...
> I call the constructor like this:  scene (Scene. root 500 250 Color/BLACK)
> I don't have any error if I do:
> (let [ scene (Scene. root 500 250)]
>   (.setFill scene Color/BLACK))
>

Try: (Scene. root 500.0 250.0 Color/BLACK)
-- 
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)

-- 
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