/////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2002-2025, 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 Open Design Alliance software pursuant to a license // agreement with Open Design Alliance. // Open Design Alliance Copyright (C) 2002-2025 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_RADIAL_DIM_LARGE_RECOMPUTOR__ #define __OD_RADIAL_DIM_LARGE_RECOMPUTOR__ #include "TD_PackPush.h" #include "OdDimRecomputor.h" /** \details This class implements a Large Radial Dimension Block Recomputor. Library: Source provided. */ class OdRadialDimLargeRecomputor : public OdDimRecomputor { public: void getDimParams(const OdDbDimension* pDimension, OdDbDimensionObjectContextData* ctx); void setDimParams(OdDbDimension* pDimension, OdDbDimensionObjectContextData* ctx) const; void buildDimension(OdArray& dimBlkEntities, OdDbDimStyleTableRecord* pDimVars); void preprocessDimPoints(OdDbDimStyleTableRecord* pDimVars); void updateMeasurement(OdDbDimStyleTableRecord* pDimVars); protected: OdRadialDimLargeRecomputor(); virtual ~OdRadialDimLargeRecomputor(); /// OdGePoint3d m_CenterPt; OdGePoint3d m_ChordPt; OdGePoint3d m_OverrideCenterPt; OdGePoint3d m_JogPt; double m_dJogAngle; bool m_bExtArcOn; double m_dExtArcStartAngle; double m_dExtArcEndAngle; virtual OdUInt8 getDimTypeFlag(); void formatDimStrWithLimsAndTols(OdString& formattedString, bool hasLimits, bool hasTols, double measurement, OdInt16 dimlunit, double dimtm, double dimtp, OdInt16 dimtzin, double dimtfac, OdInt16 dimtdec, double dimrnd, OdChar dimdsep, OdInt16 dimfrac, double dimtxt, OdInt16 dimzin, OdInt16 dimdec, OdString dimpost, bool bPrimaryUnits, bool dimAlt); }; /** \details This class implements a Large Radial Dimension Block Recomputor Protocol Extension. Library: Source provided. */ class OdDbRadialDimLargeRecomputePEImpl : public OdDbDimRecomputePEImpl { protected: virtual OdDimRecomputorPtr createRecomputor(); }; #include "TD_PackPop.h" #endif // __OD_RADIAL_DIM_LARGE_RECOMPUTOR__