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