Bézier Curve with WebGL
Click and drag control points to manipulate the Bézier curve.
Implementation Details
This application allows users to interactively manipulate Bézier curves using WebGL for rendering. Users can click and drag control points on the canvas to dynamically adjust the shape of the curve. Bezier curves were my introduction to Computer Graphics; although I did not implement with an API - this was much more critical for understanding how code represents points and movement on lines.
Core Components
- Control Points: Users can interact with control points to define the Bézier curve.
- WebGL Rendering: Utilizes WebGL for efficient rendering.