@@ -116,7 +116,7 @@ public ref class Form1: public System::Windows::Forms::Form
116
116
private:
117
117
void AddClosedCurveExample ( PaintEventArgs^ e )
118
118
{
119
- // Creates a symetrical , closed curve.
119
+ // Creates a symmetrical , closed curve.
120
120
array<Point>^ myArray = {Point (20 ,100 ),Point (40 ,150 ),Point (60 ,125 ),Point (40 ,100 ),Point (60 ,75 ),Point (40 ,50 )};
121
121
122
122
// Create a new path and add curve.
@@ -174,7 +174,7 @@ public ref class Form1: public System::Windows::Forms::Form
174
174
private:
175
175
void AddLineExample ( PaintEventArgs^ e )
176
176
{
177
- // Create a path and add a symetrical triangle using AddLine.
177
+ // Create a path and add a symmetrical triangle using AddLine.
178
178
GraphicsPath^ myPath = gcnew GraphicsPath;
179
179
myPath->AddLine ( 30 , 30 , 60 , 60 );
180
180
myPath->AddLine ( 60 , 60 , 0 , 60 );
@@ -191,7 +191,7 @@ public ref class Form1: public System::Windows::Forms::Form
191
191
private:
192
192
void AddLinesExample ( PaintEventArgs^ e )
193
193
{
194
- // Create a symetrical triangle using an array of points.
194
+ // Create a symmetrical triangle using an array of points.
195
195
array<Point>^ myArray = {Point (30 ,30 ),Point (60 ,60 ),Point (0 ,60 ),Point (30 ,30 )};
196
196
197
197
// Create a path and add lines.
0 commit comments