styledCylinder
inline 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.
inline fun NodeContainer.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 container.
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 NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.