From 122d295613363f097758c77fad7471369e99c14a Mon Sep 17 00:00:00 2001 From: Reini Urban Date: Sat, 5 Oct 2024 16:55:49 +0200 Subject: [PATCH] document ELLIPSE fields --- include/dwg.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/dwg.h b/include/dwg.h index bf7f6644f..e1e586990 100644 --- a/include/dwg.h +++ b/include/dwg.h @@ -1955,12 +1955,12 @@ typedef struct _dwg_entity_ELLIPSE { struct _dwg_object_entity *parent; - BITCODE_3BD center; - BITCODE_3BD sm_axis; - BITCODE_BE extrusion; - BITCODE_BD axis_ratio; /* i.e RadiusRatio */ - BITCODE_BD start_angle; - BITCODE_BD end_angle; + BITCODE_3BD center; /* DXF 10 */ + BITCODE_3BD sm_axis; /* DXF 11, major axis */ + BITCODE_BE extrusion; /* DXF 210, the normal */ + BITCODE_BD axis_ratio; /* DXF 40, i.e RadiusRatio, minor radius / major radius */ + BITCODE_BD start_angle;/* DXF 41, default 0 */ + BITCODE_BD end_angle; /* DXF 42, default 2*PI */ } Dwg_Entity_ELLIPSE; /**