// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _IGESGeom_CurveOnSurface_HeaderFile #define _IGESGeom_CurveOnSurface_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_DefineHandle_HeaderFile #include #endif #ifndef _Handle_IGESGeom_CurveOnSurface_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Handle_IGESData_IGESEntity_HeaderFile #include #endif #ifndef _IGESData_IGESEntity_HeaderFile #include #endif class IGESData_IGESEntity; //! defines IGESCurveOnSurface, Type <142> Form <0>
//! in package IGESGeom
//! A curve on a parametric surface entity associates a given
//! curve with a surface and identifies the curve as lying on
//! the surface.
class IGESGeom_CurveOnSurface : public IGESData_IGESEntity { public: Standard_EXPORT IGESGeom_CurveOnSurface(); //! This method is used to set the fields of the class
//! CurveOnSurface
//! - aMode : Way the curve on the surface has been created
//! - aSurface : Surface on which the curve lies
//! - aCurveUV : Curve S (UV)
//! - aCurve3D : Curve C (3D)
//! - aPreference : 0 = Unspecified
//! 1 = S o B is preferred
//! 2 = C is preferred
//! 3 = C and S o B are equally preferred
Standard_EXPORT void Init(const Standard_Integer aMode,const Handle(IGESData_IGESEntity)& aSurface,const Handle(IGESData_IGESEntity)& aCurveUV,const Handle(IGESData_IGESEntity)& aCurve3D,const Standard_Integer aPreference) ; //! returns the mode in which the curve is created on the surface
//! 0 = Unspecified
//! 1 = Projection of a given curve on the surface
//! 2 = Intersection of two surfaces
//! 3 = Isoparametric curve, i.e:- either a `u` parametric
//! or a `v` parametric curve
Standard_EXPORT Standard_Integer CreationMode() const; //! returns the surface on which the curve lies
Standard_EXPORT Handle_IGESData_IGESEntity Surface() const; //! returns curve S
Standard_EXPORT Handle_IGESData_IGESEntity CurveUV() const; //! returns curve C
Standard_EXPORT Handle_IGESData_IGESEntity Curve3D() const; //! returns preference mode
//! 0 = Unspecified
//! 1 = S o B is preferred
//! 2 = C is preferred
//! 3 = C and S o B are equally preferred
Standard_EXPORT Standard_Integer PreferenceMode() const; DEFINE_STANDARD_RTTI(IGESGeom_CurveOnSurface) protected: private: Standard_Integer theCreationMode; Handle_IGESData_IGESEntity theSurface; Handle_IGESData_IGESEntity theCurveUV; Handle_IGESData_IGESEntity theCurve3D; Standard_Integer thePreferenceMode; }; // other Inline functions and methods (like "C++: function call" methods) #endif