factory Point3d.fromJson(final Map<String, dynamic> json) { return Point3d(x: json['x'], y: json['y'], z: json['z']); }