[IMP]Support Horiz/Vert Dims in DXF export
This commit is contained in:
@@ -758,7 +758,7 @@ void ImpExpDxfWrite::exportText(const char* text, Base::Vector3d position1, Base
|
||||
|
||||
void ImpExpDxfWrite::exportLinearDim(Base::Vector3d textLocn, Base::Vector3d lineLocn,
|
||||
Base::Vector3d extLine1Start, Base::Vector3d extLine2Start,
|
||||
char* dimText)
|
||||
char* dimText, int type)
|
||||
{
|
||||
double text[3] = {0,0,0};
|
||||
text[0] = textLocn.x;
|
||||
@@ -776,7 +776,7 @@ void ImpExpDxfWrite::exportLinearDim(Base::Vector3d textLocn, Base::Vector3d lin
|
||||
ext2[0] = extLine2Start.x;
|
||||
ext2[1] = extLine2Start.y;
|
||||
ext2[2] = extLine2Start.z;
|
||||
writeLinearDim(text, line, ext1,ext2,dimText);
|
||||
writeLinearDim(text, line, ext1,ext2,dimText, type);
|
||||
}
|
||||
|
||||
void ImpExpDxfWrite::exportAngularDim(Base::Vector3d textLocn, Base::Vector3d lineLocn,
|
||||
|
||||
Reference in New Issue
Block a user