Bezier Evaluate Vector
PureBezierEvaluateVectorEvaluates a cubic bezier curve in 3D space at parameter T.
Type: Pure (no side effects)
Category: Fortuna|Math & Numeric
Keywords: math & numeric
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| P0 | FVector | — | P0 parameter |
| P1 | FVector | — | P1 parameter |
| P2 | FVector | — | P2 parameter |
| P3 | FVector | — | P3 parameter |
| T | float 0-1 | — | T parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | FVector | ReturnValue output |
Example Use Cases
Example 1
Projectile arc following a bezier path.
Example 2
Camera dolly along a curved track.