fromJson static method
Implementation
static fromJson(Map<String, dynamic> data) {
throw('Not Implimented');
// This only works for built-in curves (e.g. CatmullRomCurve3).
// User defined curves or instances of CurvePath will not be deserialized.
// return TubeGeometry(
// curves(data['path']['type'])?.fromJson( data['path'] ),
// data['tubularSegments'],
// data['radius'],
// data['radialSegments'],
// data['closed']
// );
}