-- Created on: 1994-02-23 -- Created by: model -- Copyright (c) 1994-1999 Matra Datavision -- Copyright (c) 1999-2014 OPEN CASCADE SAS -- -- This file is part of Open CASCADE Technology software library. -- -- This library is free software; you can redistribute it and / or modify it -- under the terms of the GNU Lesser General Public version 2.1 as published -- by the Free Software Foundation, with special exception defined in the file -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -- distribution for complete text of the license and disclaimer of any warranty. -- -- Alternatively, this file may be used under the terms of Open CASCADE -- commercial license or contractual agreement. generic class GenHCurve2d from Adaptor2d (TheCurve as Curve2d from Adaptor2d) inherits HCurve2d from Adaptor2d ---Purpose: Generic class used to create a curve2d manipulated -- with Handle from a curve2d described by the class Curve2d. uses Curve2d from Adaptor2d raises OutOfRange from Standard, NoSuchObject from Standard, DomainError from Standard is Create ---Purpose: Creates an empty GenHCurve2d. returns mutable GenHCurve2d from Adaptor2d; Create(C: TheCurve) ---Purpose: Creates a GenHCurve2d from a Curve returns mutable GenHCurve2d from Adaptor2d; Set(me: mutable; C: TheCurve) ---Purpose: Sets the field of the GenHCurve2d. is static; Curve2d(me) ---Purpose: Returns the curve used to create the GenHCurve2d. -- This is redefined from HCurve2d, cannot be inline. -- ---C++: return const & returns Curve2d from Adaptor2d is static; ChangeCurve2d(me : mutable) ---Purpose: Returns the curve used to create the GenHCurve. -- ---C++: return & ---C++: inline returns TheCurve; fields myCurve : TheCurve is protected; end GenHCurve2d;