fromJSON static method
Implementation
static CylinderGeometry fromJSON(data) {
return CylinderGeometry(
data["radiusTop"],
data["radiusBottom"],
data["height"],
data["radialSegments"],
data["heightSegments"],
data["openEnded"],
data["thetaStart"],
data["thetaLength"]);
}