//! Copies a SectionLine.
Standard_EXPORT Intf_SectionLine(const Intf_SectionLine& Other);
+ //! Assignment
+ Intf_SectionLine& operator= (const Intf_SectionLine& theOther)
+ {
+ //closed = theOther.closed; // not copied as in copy constructor
+ myPoints = theOther.myPoints;
+ return *this;
+ }
+
//! Adds a point at the end of the SectionLine.
Standard_EXPORT void Append (const Intf_SectionPoint& Pi);