<div class='sourceset sourceset-common'>Common</div>

```kotlin
Conic,
```

Conic curve, the path segment contains 3 points in the following order:
- Start point
- Control point
- End point

The curve is weighted by the [weight](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/PathSegment) property.

The conic weight determines the amount of influence conic control point has on the curve.
If the weight is less than one, the curve represents an elliptical section. If the weight
is greater than one, the curve represents a hyperbolic section. If the weight equals one,
the curve represents a parabolic section.