Share

AcDbDwgFiler::writeScale3d

C++

virtual Acad::ErrorStatus writeScale3d(
    const AcGeScale3d& val
) = 0;

Description

The implementation of this function should follow that of the ObjectARX internal filers. It should:

  • check the current filer status. If it is Acad::eOk, then continue, or else return the current status.
  • write out the X, Y, and Z scale doubles in val.
  • return an Acad::ErrorStatus value indicating the success or failure of the operation (use Acad::eOk to indicate success).

Parameters

Parameters Description
unnamed Reference to an AcGeScale3d object whose data needs to be written out

Links

AcDbDwgFiler

Was this information helpful?