edvin
05/03/2017, 3:49 PMcarlw
05/03/2017, 3:50 PMedvin
05/03/2017, 3:51 PMcarlw
05/03/2017, 3:51 PMedvin
05/03/2017, 4:25 PMnimakro
05/03/2017, 5:01 PMlabel
builder doesn't support passing a graphic in, is it fine if I would add that to the builder as an optional parameter?...Right now we also don't have support for shapes I would like to do the following:
// What I have to do right now
val color = Circle()
color.centerX = 10.0
color.centerY = 10.0
color.radius = 5.0
label {
graphic = color
}
// What I would like to do is
label {
graphic = color {
centerX = 10.0
centerY = 10.0
radius = 5.0
}
}
edvin
05/03/2017, 5:34 PMedvin
05/03/2017, 6:16 PMnimakro
05/03/2017, 6:20 PMedvin
05/03/2017, 6:20 PMNumber
parameters instead of just Double
, so the last one can soon be written circle(10, 10, 5)
as well 🙂edvin
05/03/2017, 6:23 PMedvin
05/03/2017, 6:42 PMedvin
05/03/2017, 7:11 PMkastork
05/03/2017, 7:13 PMedvin
05/03/2017, 7:22 PMedvin
05/03/2017, 7:22 PMedvin
05/03/2017, 7:23 PMkastork
05/03/2017, 7:26 PMedvin
05/03/2017, 7:27 PMkastork
05/03/2017, 7:27 PMedvin
05/03/2017, 7:28 PMedvin
05/03/2017, 7:28 PMkastork
05/03/2017, 7:28 PMkastork
05/03/2017, 7:34 PMedvin
05/03/2017, 7:34 PMedvin
05/03/2017, 7:34 PMedvin
05/03/2017, 7:34 PMedvin
05/03/2017, 7:35 PMkastork
05/03/2017, 7:35 PM