OSDN Git Service

Added Assets for main menu
[mindgames/Mindgames_main.git] / Mindgames / Library / PackageCache / com.unity.shadergraph@6.9.0 / Documentation~ / Hyperbolic-Cosine-Node.md
1 # Hyperbolic Cosine Node
2
3 ## Description
4
5 Returns the hyperbolic cosine of input **In**.
6
7 ## Ports
8
9 | Name        | Direction           | Type  | Description |
10 |:------------ |:-------------|:-----|:---|
11 | In      | Input | Dynamic Vector | Input value |
12 | Out | Output      |    Dynamic Vector | Output value |
13
14 ## Generated Code Example
15
16 The following example code represents one possible outcome of this node.
17
18 ```
19 void Unity_HyperbolicCosine_float4(float4 In, out float4 Out)
20 {
21     Out = cosh(In);
22 }
23 ```