styledCylinder

fun styledCylinder(radius: Double = 1.0, height: Double = 2.0, division: Int = 64, vararg styleClass: String, id: String? = null): Cylinder

Create a styled Cylinder.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledCylinder(radius: Double = 1.0, height: Double = 2.0, division: Int = 64, vararg styleClass: String, id: String? = null): Cylinder

Add a styled Cylinder to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledCylinder(radius: Double = 1.0, height: Double = 2.0, division: Int = 64, vararg styleClass: String, id: String? = null, configuration: Cylinder.() -> Unit): Cylinder

Create a styled Cylinder with configuration block.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.


inline fun NodeManager.styledCylinder(radius: Double = 1.0, height: Double = 2.0, division: Int = 64, vararg styleClass: String, id: String? = null, configuration: Cylinder.() -> Unit): Cylinder

Add a styled Cylinder with configuration block to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.