We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug For elliptical instances, it is not possible to obtain the values of major axis and minor axis
Screenshots
The text was updated successfully, but these errors were encountered:
Hi @zxxiao2012,
The major axis property is called Endpoint:
Endpoint
/// <summary> /// Endpoint of major axis, relative to the center (in WCS). /// </summary> [DxfCodeValue(11, 21, 31)] public XYZ EndPoint { get; set; } = XYZ.Zero;
The minor axis is not provided but you can easly get it by finding the perpendicular between Center and EndPoint.
Center
EndPoint
Hope this helps!
Sorry, something went wrong.
No branches or pull requests
Describe the bug
For elliptical instances, it is not possible to obtain the values of major axis and minor axis
Screenshots
The text was updated successfully, but these errors were encountered: