Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
In an arrangement you want to add the 4 points of my Bézier curve;What I have tried:Then when dragging the points you want the curve to change and what I want to know is How to make that change?

What I have tried:

C#
namespace Ejercicio_Unidad_2
{
    public partial class Form1 : Form
    {
        Point[] Puntos = new Point[4];
        public Form1()
        {
            InitializeComponent();
            Puntos[0].X = 96;
            Puntos[0].Y = 196;
            Puntos[1].X = 136;
            Puntos[1].Y = 76;
            Puntos[2].X = 146;
            Puntos[2].Y = 246;
            Puntos[3].X = 256;
            Puntos[3].Y = 196;
        }


    }
}
Posted
Updated 22-Oct-21 7:41am
v3
Comments
CHill60 22-Oct-21 6:02am    
Share the code you have tried. There is not enough information here for anyone to be able to help you

1 solution

See these CodeProject articles: Search Bezier C#[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900