public void visit(MFVec2f field) { field.clearValues(); ParseMField((subcontext) => { var child = new SFVec2f(); this.visit(child); field.AppendValue(child); }); }
public override Field Clone() { var clone = new MFVec2f(); foreach (var child in Values) { clone.AppendValue((SFVec2f)child.Clone()); } return(clone); }