/// <summary> /// Creates a new EndPoint from XML Attributes. /// </summary> /// <param name="XmlAttrs">The attributes of the EndPoint</param> public EndPoint(XmlStructs.XmlPointAttrs XmlAttrs) : base(XmlAttrs) { }
/// <summary> /// Construct a new Point class from XML attributes. /// </summary> /// <param name="XmlAttrs">The XML attributes of the Point</param> public Point(XmlStructs.XmlPointAttrs XmlAttrs) { this._xmlAttributes = XmlAttrs; }
/// <summary> /// Construct a new point with the given attributes /// </summary> /// <param name="x"></param> /// <param name="y"></param> /// <param name="pressure"></param> /// <param name="time"></param> /// <param name="name"></param> public Point(float x, float y, float?pressure = null, ulong?time = null, string name = null) { this._xmlAttributes = new XmlStructs.XmlPointAttrs(x, y, pressure, time, name); }
/// <summary> /// Construct a new Point class from XML attributes. /// </summary> /// <param name="XmlAttrs">The XML attributes of the Point</param> public Point(XmlStructs.XmlPointAttrs XmlAttrs) { this.XmlAttrs = XmlAttrs; }