Close

Relief for ODA Team in Ukraine

Learn more
ODA Drawings SDK
VSADRAFTANGLELOW
Syntax
C++
double VSADRAFTANGLELOW;
Type
double
Initial value
(3.0)
Read-Only
No
Saved In
Database
Versions
2013+

 

The VSADRAFTANGLELOW variable stores a low angle value at which a surface displays as blue tint when draft analysis is performed. The draft angle defines an angle between the surface normal and UCS plane and is measured in the range 90 to 90 degrees. 

 

Value
Description
90
Opposite to the construction plane.
0.0
Perpendicular to the construction plane.
90.0
Parallel to the construction plane.

 

Access Methods
OdDbDatabase::getSysVar()
OdDbDatabase::setSysVar()
 
OdDbDatabase::getVSADRAFTANGLELOW()
OdDbDatabase::setVSADRAFTANGLELOW()

 

For example, to get the value:

OdRusBufPtr pRb = pDb->getSysVar(L"VSADRAFTANGLELOW"); double angle = pRb->getDouble(); odPrintConsoleString(L"nLow draft angle = %g", angle); // or // odPrintConsoleString(L"nLow draft angle = %g", pDb->getVSADRAFTANGLELOW());

For example, to set the value:

OdRusBufPtr pRb = OdResBuf::newRb(OdResBuf::kRtDouble, -4.5); pDb->setSysVar(L"VSADRAFTANGLELOW", pRb); // or // pDb->setVSADRAFTANGLELOW(-5.0);

 

File: SysVarDefs.h 

Module: API Reference 

Copyright © 2002-2022. Open Design Alliance All rights reserved.