LineCurve3.fromJSON constructor
Implementation
LineCurve3.fromJSON(Map<String, dynamic> json) {
arcLengthDivisions = json["arcLengthDivisions"];
type = json["type"];
vec1 = Vector3.fromJSON(json['vec1']);
vec2 = Vector3.fromJSON(json['vec2']);
}