JamesBremner / DXF_Viewer

A simple DXF File viewer
MIT License
22 stars 4 forks source link

Typo in comments of CArc #20

Closed asmwarrior closed 4 years ago

asmwarrior commented 4 years ago
class CArc  : public cDXFGraphObject
{
public:
    double x;   ///< center, +ve to left of window
    double y;   ///< venter, +ve to bottom of window
    double r;   ///< radius
    double sa;  ///< start angle degrees anti-clockwise from 3 o'clock
    double ea;  ///< start angle degrees anti-clockwise from 3 o'clock

venter should be center.

asmwarrior commented 4 years ago

double ea; ///< start angle degrees anti-clockwise from 3 o'clock

It should be end angle.

asmwarrior commented 4 years ago

@JamesBremner , this typo is not fixed yet, see my https://github.com/JamesBremner/DXF_Viewer/issues/20#issuecomment-597461074.

asmwarrior commented 4 years ago

OK, thanks for typo fix, I will close the issue now.