GeometryGym.Ifc.IfcPointOnSurface.SetXML C# (CSharp) Method

SetXML() private method

private SetXML ( XmlElement xml, BaseClassIfc host, HashSet processed ) : void
xml System.Xml.XmlElement
host BaseClassIfc
processed HashSet
return void
        internal override void SetXML(XmlElement xml, BaseClassIfc host, HashSet<int> processed)
        {
            base.SetXML(xml, host, processed);
            xml.AppendChild(BasisSurface.GetXML(xml.OwnerDocument, "BasisSurface", this, processed));
            xml.SetAttribute("PointParameterU", mPointParameterU.ToString());
            xml.SetAttribute("PointParameterV", mPointParameterV.ToString());
        }
IfcPointOnSurface