You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g., Commonly AutoCAD will save a CIRCLE or ARC with a negative Z-axis normal vector which negates the X coordinate of the center and can also cause problems with the start/end angles.
There should be some sort of method (exact shape TBD) that does the following:
publicstaticDxfEntityCorrectForExtrusionVector(thisDxfEntityentity){if(entity.Normal!=DxfVector.ZAxis){switch(entity.EntityType){caseDxfEntityType.Circle:// TODO: make the necessary transformations to correct for normal and return a copy
...}}returnentity;// no change}
Alternately, the individual values could be handled:
publicstaticDxfPointCorrectForExtrusionVector(thisDxfEntityentity,DxfPointpoint){if(entity.Normal!=DxfVector.ZAxis){// TODO: transform the point as appropriate}returnpoint;// no change}
The text was updated successfully, but these errors were encountered:
E.g., Commonly AutoCAD will save a
CIRCLE
orARC
with a negative Z-axis normal vector which negates the X coordinate of the center and can also cause problems with the start/end angles.There should be some sort of method (exact shape TBD) that does the following:
Alternately, the individual values could be handled:
The text was updated successfully, but these errors were encountered: