I'm working on Autocad files reader for android , now I Only read DXF files using Kabeja library and it works great but when i draw simple shape in Autocad and try to draw it on Android it doesn't appear when i look to Autocad coordinates i find them are too large I have already did a lot of search to find out any solution and one i tried is to read
EXTMIN and EXTMAX
header values but they return {30=0.0, 20=1015.620062425179, 10=1624.318980044965} for EXTMIN and {30=0.0, 20=2134.42060268589, 10=3716.108222970341} for EXTMAX
this is my code
DXFHeader dxfHeader = dxfDoc.getDXFHeader();
DXFVariable dxfVariableMin = dxfHeader.getVariable("$EXTMIN");
DXFVariable dxfVariableMax = dxfHeader.getVariable("$EXTMAX");
i don't know how to use these values to make my shapes be drawn correctly