| Parameter | Description |
|---|---|
| x | Input angle in radians. |
| s | Output sine of the input. |
| c | Output cosine of the input. |
Returns the sine and cosine of the input float value x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input vector containing angles in radians. |
| s | Output vector containing the componentwise sine of the input. |
| c | Output vector containing the componentwise cosine of the input. |
Returns the componentwise sine and cosine of the input float2 vector x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input vector containing angles in radians. |
| s | Output vector containing the componentwise sine of the input. |
| c | Output vector containing the componentwise cosine of the input. |
Returns the componentwise sine and cosine of the input float3 vector x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input vector containing angles in radians. |
| s | Output vector containing the componentwise sine of the input. |
| c | Output vector containing the componentwise cosine of the input. |
Returns the componentwise sine and cosine of the input float4 vector x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input angle in radians. |
| s | Output sine of the input. |
| c | Output cosine of the input. |
Returns the sine and cosine of the input double value x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input vector containing angles in radians. |
| s | Output vector containing the componentwise sine of the input. |
| c | Output vector containing the componentwise cosine of the input. |
Returns the componentwise sine and cosine of the input double2 vector x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input vector containing angles in radians. |
| s | Output vector containing the componentwise sine of the input. |
| c | Output vector containing the componentwise cosine of the input. |
Returns the componentwise sine and cosine of the input double3 vector x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.
| Parameter | Description |
|---|---|
| x | Input vector containing angles in radians. |
| s | Output vector containing the componentwise sine of the input. |
| c | Output vector containing the componentwise cosine of the input. |
Returns the componentwise sine and cosine of the input double4 vector x through the out parameters s and c.
When Burst compiled, his method is faster than calling sin() and cos() separately.