Initial winforms content migrated (#18)

* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
This commit is contained in:
Andy De George
2020-09-01 16:26:21 -07:00
committed by GitHub
parent 1a27c9b107
commit c0ba284473
1557 changed files with 129980 additions and 13 deletions
@@ -0,0 +1,21 @@
---
title: "Constructing and Drawing Curves"
ms.date: "03/30/2017"
helpviewer_keywords:
- "drawing [Windows Forms], curves"
- "examples [Windows Forms], drawing curves"
- "curves [Windows Forms], drawing"
ms.assetid: 76e92623-4130-4644-b867-faca58bdb3a2
---
# Constructing and Drawing Curves
GDI+ supports several types of curves: ellipses, arcs, cardinal splines, and Bézier splines. An ellipse is defined by its bounding rectangle; an arc is a portion of an ellipse defined by a starting angle and a sweep angle. A cardinal spline is defined by an array of points and a tension parameter — the curve passes smoothly through each point in the array, and the tension parameter influences the way the curve bends. A Bézier spline is defined by two endpoints and two control points the curve does not pass through the control points, but the control points influence the direction and bend as the curve goes from one endpoint to the other.
## In This Section
[How to: Draw Cardinal Splines](how-to-draw-cardinal-splines.md)
Describes cardinal splines and how to draw them.
[How to: Draw a Single Bézier Spline](how-to-draw-a-single-bezier-spline.md)
Describes a Bézier spline and how to draw one.
[How to: Draw a Sequence of Bézier Splines](how-to-draw-a-sequence-of-bezier-splines.md)
Explains how to draw several Bézier splines in sequence.