Prod.: Engine, ver.: 6, ID: 60001191, HowTo : vdEllipse problem with DWG and DXF files

HowTo : vdEllipse problem with DWG and DXF files

Article60001191
TypeHowTo
ProductEngine
Version6
Date Added7/22/2010
Submitted byvictor weber
Keywords

Subject

vdEllipse problem with DWG and DXF files

Summary

vdEllipse problem with DWG and DXF files

Solution

VectorDraw uses as minimum value to compare angular value the Globals.DefaultAngularEquality equals to 0.000001
In order to properly display dxf drawings that contains ellipse or arc that difference between Start and EndAgle is smaller than 0.000001 then chainge the Globals.DefaultAngularEquality before open the drawing to
Globals.DefaultAngularEquality = 0.0000001

example

VectorDraw.Geometry.Globals.DefaultAngularEquality = 0.0000001;
document.Open(file.dxf);