/////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2002-2016, Open Design Alliance (the "Alliance"). // All rights reserved. // // This software and its documentation and related materials are owned by // the Alliance. The software may only be incorporated into application // programs owned by members of the Alliance, subject to a signed // Membership Agreement and Supplemental Software License Agreement with the // Alliance. The structure and organization of this software are the valuable // trade secrets of the Alliance and its suppliers. The software is also // protected by copyright law and international treaty provisions. Application // programs incorporating this software must include the following statement // with their copyright notices: // // This application incorporates Teigha(R) software pursuant to a license // agreement with Open Design Alliance. // Teigha(R) Copyright (C) 2002-2016 by Open Design Alliance. // All rights reserved. // // By use of this software, its documentation or related materials, you // acknowledge and accept the above terms. /////////////////////////////////////////////////////////////////////////////// #ifndef _OD_DB_TRACE_ #define _OD_DB_TRACE_ #include "TD_PackPush.h" #include "DbEntity.h" /** \details This class implements the two-dimensional /solid-filled/ object (Trace entity) in the database. This class inherits the base functionality of entities. \sa TD_Db \sa \sa OdDbSolid, OdDbEntity classes */ class TOOLKIT_EXPORT OdDbTrace : public OdDbEntity { public: ODDB_DECLARE_MEMBERS(OdDbTrace); /** \details Builds an instance of the /2D solid-filled/ entity. \remarks Use the static pseudo-constructor instead it. See: */ OdDbTrace(); /* OdDbTrace(const OdGePoint3d& pt0, const OdGePoint3d& pt1, const OdGePoint3d& pt2, const OdGePoint3d& pt3); */ /** \details Gets the WCS coordinates of the vertex belonged to the trace entity using the specified index (DXF 10, 11, 12, or 13). \param pointIndex [in] Vertex index 0, 1, 2, or 3. \param pointValue [out] Reference to a variable in which this method must save the trace vertex as three-dimensional point instance. \sa \sa OdDbTrace::setPointAt() method */ void getPointAt( int pointIndex, OdGePoint3d& pointValue ) const; /** \details Sets the WCS coordinates of the vertex belonged to the trace entity using the specified index (DXF 10, 11, 12, or 13). \param pointIndex [in] Vertex index 0, 1, 2, or 3. \param pointValue [in] Three-dimensional point instance to set the vertex position. \sa \sa OdDbTrace::getPointAt() method */ void setPointAt( int pointIndex, const OdGePoint3d& pointValue ); /** \details Returns the thickness of the trace entity (DXF 39) in drawing units. Thickness is the extrusion length along the normal. A positive value defines the thickness to be drawn along the normal direction. A negative value defines the thickness to be drawn in the opposite direction from the normal. A zero value defines a trace without thickness. \sa \sa OdDbTrace::setThickness() method */ double thickness() const; /** \details Sets the thickness of the trace entity (DXF 39) in drawing units. Thickness is the extrusion length along the normal. A positive value extrudes along the normal. A negative value extrudes opposite from the normal. A zero value defines a trace without thickness. The initial value is zero by default. \param vThickness [in] Thickness as a Double value. \sa \sa OdDbTrace::thickness() method */ void setThickness( double vThickness ); /** \details Returns the WCS unit vector which is the normal to the plane of the trace entity (DXF 210). The normal defines the orientation of the trace plane in world space. \sa \sa OdDbTrace::setNormal() method */ OdGeVector3d normal() const; /** \details Sets the WCS normal to the plane of the trace entity (DXF 210). The normal defines the orientation of the trace plane in world space. The initial value is (0,0,1) by default. \param geVector [in] Three-dimensional vector instance to set the normal. \remarks This method automatically converts the specified vector to the unit vector. \sa \sa OdDbTrace::normal() method */ void setNormal( const OdGeVector3d& geVector ); /** \details Determines whether vertices of the trace entity place in the same plane as a Boolean value and returns True if the entity is planar or False if the entity is non-planar. This method is inherited from the OdDbEntity class. \sa \sa OdDbTrace::getPlane(), OdDbEntity::isPlanar() methods */ virtual bool isPlanar() const; /** \details Gets the trace plane. This method is inherited from the OdDbEntity class. \param gePlane [out] Reference to a variable in which this method must save the trace plane parameters as a plane instance. \param gePlanarity [out] Reference to a variable in which this method must save the plane type kNonPlanar - non-planar, kPlanar - planar entity, kLinear - arbitrary plane. \sa \sa OdDbTrace::isPlanar(), OdDbEntity::getPlane() methods */ virtual OdResult getPlane( OdGePlane& gePlane, OdDb::Planarity& gePlanarity ) const; virtual OdResult dwgInFields( OdDbDwgFiler* pFiler); virtual void dwgOutFields( OdDbDwgFiler* pFiler) const; virtual OdResult dxfInFields( OdDbDxfFiler* pFiler); virtual void dxfOutFields( OdDbDxfFiler* pFiler) const; bool subWorldDraw( OdGiWorldDraw* pWd) const; void subViewportDraw( OdGiViewportDraw* pVd) const; virtual OdResult dxfInFields_R12( OdDbDxfFiler* pFiler); virtual void dxfOutFields_R12( OdDbDxfFiler* pFiler) const; OdResult subGetClassID( void* pClsid) const; virtual OdResult subTransformBy( const OdGeMatrix3d& xfm); OdResult subGetSubentPathsAtGsMarker( OdDb::SubentType type, OdGsMarker gsMark, const OdGePoint3d& , const OdGeMatrix3d& , OdDbFullSubentPathArray& subentPaths, const OdDbObjectIdArray* pEntAndInsertStack ) const; OdResult subGetGsMarkersAtSubentPath( const OdDbFullSubentPath& subPath, OdGsMarkerArray& gsMarkers) const; OdGeMatrix3d getEcs( ) const; }; /** \details The typified smart pointer for the two-dimensional /solid-filled/ object (Trace entity). This template class is specialization of the OdSmartPtr class for the OdDbTrace class. \sa */ typedef OdSmartPtr OdDbTracePtr; #include "TD_PackPop.h" #endif