#math
> Given a few points, get smooth lines
Bézier curves are like magic lines that can create smooth and curvy shapes. They are made by connecting special points together in a special way, and artists and designers use them to draw beautiful pictures and create cool animations!

%% run start
```ts
const {LinkPreview} = customJS
return LinkPreview.getLinkPreviewFromUrl("https://en.wikipedia.org/wiki/Bezier_curve")
```
%%
<div class="nifty-link-card-container">
<a class="nifty-link-card" href="https://en.wikipedia.org/wiki/Bezier_curve" target="_blank">
<div class="nifty-link-card-text">
<div class="nifty-link-card-title line-clamp-2">Bézier curve - Wikipedia</div>
<div class="nifty-link-card-description"></div>
<div class="nifty-link-href">
<img class="nifty-link-icon" src="https://en.wikipedia.org/static/apple-touch/wikipedia.png">
https://en.wikipedia.org/wiki/Bezier_curve
</div>
</div>
<div class="nifty-link-image-container">
<div class="nifty-link-image" style="background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Bezier_curve.svg/1200px-Bezier_curve.svg.png')">
</div>
</div>
</a>
</div>
%% run end %%
## What is the Difference of This and Interpolation?